From a169b798b27d1901a2bef0fc95288357e5ce7257 Mon Sep 17 00:00:00 2001 From: Arthur Warnier Date: Sun, 7 Jan 2024 22:02:12 +0100 Subject: [PATCH] fix(compiler): fix forgotten import --- src/compiler.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/compiler.js b/src/compiler.js index 79e873f..922065d 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -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 ';