Skip to content

Commit

Permalink
fix: boolean new
Browse files Browse the repository at this point in the history
  • Loading branch information
pgagnidze committed Nov 17, 2023
1 parent f3a7381 commit 904a16f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/cli.util.ts
Expand Up @@ -141,7 +141,7 @@ export async function runFiles(
const object = JSON.parse(content);

const { default: puppeteer } = await import("puppeteer");
const flyResults = await owl({puppeteer, actions: object, headless: Boolean(opts.headless)});
const flyResults = await owl({puppeteer, actions: object, headless: opts.headless});
result.record = flyResults;
opts.log && console.log(`Finished running ${file}`);
} catch (err) {
Expand Down

0 comments on commit 904a16f

Please sign in to comment.