Skip to content

Commit

Permalink
fix(compiler): fix forgotten import
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthy000 committed Jan 7, 2024
1 parent cc77979 commit a169b79
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ const TestcafeTypescriptCompiler = require('testcafe/lib/compiler/test-file/form
const CustomizableCompilers = require('testcafe/lib/configuration/customizable-compilers');
const { readFileSync, existsSync } = require('fs');
const { IdGenerator } = require('@cucumber/messages');

const chalk = import('chalk');
const chalk = require('chalk');

const AND_SEPARATOR = ' and ';

Expand Down

0 comments on commit a169b79

Please sign in to comment.