From 8ea30eebbbf5941d023ae497ba24aaa56c7e2efa Mon Sep 17 00:00:00 2001 From: Ni55aN Date: Fri, 27 Dec 2024 15:40:45 +0200 Subject: [PATCH] feat: remove warning --- src/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 372c97a..31cbd23 100755 --- a/src/index.ts +++ b/src/index.ts @@ -24,8 +24,6 @@ program .option('-s --stack ', `Stacks to test, comma-separated (${stackNames.join(',')})`) .option('-sv --stack-versions ', `Versions to test, comma-separated`) .action(async (options: { depsAlias: string, stack?: string, stackVersions?: string, next?: boolean }) => { - if (!process.version.startsWith('v16')) console.info(chalk.yellow('---\nWe recommend using Node.js 16 to avoid any potential issues\n---')) - const next = options.next || false const cwd = process.cwd() const depsAlias = options.depsAlias @@ -130,6 +128,7 @@ program log('success', 'START')('Testing in', chalk.yellow(folder), '...') const APP = folder const SERVE = App.builders[stack].getStaticPath(folder, version) + console.log({ SERVE }) const playwrightFolder = dirname(require.resolve('@playwright/test')) const { error } = await validateTestRun(APP, SERVE)