fix(basic.gbapp): AS IMAGE testing.

This commit is contained in:
Rodrigo Rodriguez 2023-08-13 17:15:22 -03:00
parent 003d66a662
commit c4d7bdfc05
2 changed files with 3 additions and 3 deletions

View file

@ -325,7 +325,7 @@ export class SystemKeywords {
public async asPDF({ pid, data }) { public async asPDF({ pid, data }) {
let file = await this.renderTable(pid, data, true, false); let file = await this.renderTable(pid, data, true, false);
return file[0]; return file;
} }
public async asImage({ pid, data }) { public async asImage({ pid, data }) {
@ -382,7 +382,7 @@ export class SystemKeywords {
} }
} else { } else {
let file = await this.renderTable(pid, data, false, true); let file = await this.renderTable(pid, data, false, true);
return file[0]; return file;
} }
} }

View file

@ -174,7 +174,7 @@ export class GBDeployer implements IGBDeployer {
// Start the process of searching. // Start the process of searching.
GBLog.info(`Deploying Application Packages...`); GBLog.info(`Deploying Application packages...`);
await CollectionUtil.asyncForEach(paths, async e => { await CollectionUtil.asyncForEach(paths, async e => {
GBLog.info(`Looking in: ${e}...`); GBLog.info(`Looking in: ${e}...`);
await scanPackageDirectory(e); await scanPackageDirectory(e);