fix(basic.gbapp): AS IMAGE testing.
This commit is contained in:
parent
003d66a662
commit
c4d7bdfc05
2 changed files with 3 additions and 3 deletions
|
@ -325,7 +325,7 @@ export class SystemKeywords {
|
|||
|
||||
public async asPDF({ pid, data }) {
|
||||
let file = await this.renderTable(pid, data, true, false);
|
||||
return file[0];
|
||||
return file;
|
||||
}
|
||||
|
||||
public async asImage({ pid, data }) {
|
||||
|
@ -382,7 +382,7 @@ export class SystemKeywords {
|
|||
}
|
||||
} else {
|
||||
let file = await this.renderTable(pid, data, false, true);
|
||||
return file[0];
|
||||
return file;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -174,7 +174,7 @@ export class GBDeployer implements IGBDeployer {
|
|||
|
||||
// Start the process of searching.
|
||||
|
||||
GBLog.info(`Deploying Application Packages...`);
|
||||
GBLog.info(`Deploying Application packages...`);
|
||||
await CollectionUtil.asyncForEach(paths, async e => {
|
||||
GBLog.info(`Looking in: ${e}...`);
|
||||
await scanPackageDirectory(e);
|
||||
|
|
Loading…
Add table
Reference in a new issue