Skip to content

Commit 8ea30ee

Browse files
committed
feat: remove warning
1 parent 4a2e284 commit 8ea30ee

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ program
2424
.option('-s --stack <stack>', `Stacks to test, comma-separated (${stackNames.join(',')})`)
2525
.option('-sv --stack-versions <stack-version>', `Versions to test, comma-separated`)
2626
.action(async (options: { depsAlias: string, stack?: string, stackVersions?: string, next?: boolean }) => {
27-
if (!process.version.startsWith('v16')) console.info(chalk.yellow('---\nWe recommend using Node.js 16 to avoid any potential issues\n---'))
28-
2927
const next = options.next || false
3028
const cwd = process.cwd()
3129
const depsAlias = options.depsAlias
@@ -130,6 +128,7 @@ program
130128
log('success', 'START')('Testing in', chalk.yellow(folder), '...')
131129
const APP = folder
132130
const SERVE = App.builders[stack].getStaticPath(folder, version)
131+
console.log({ SERVE })
133132
const playwrightFolder = dirname(require.resolve('@playwright/test'))
134133

135134
const { error } = await validateTestRun(APP, SERVE)

0 commit comments

Comments
 (0)