mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-02 11:12:58 -05:00
test(core): skip some failing tests on Node.js v17 and above
This commit is contained in:
@@ -5,7 +5,7 @@ import { addDependenciesToPackage, install } from '@pnpm/core'
|
||||
import rimraf from '@zkochan/rimraf'
|
||||
import { testDefaults } from '../utils'
|
||||
|
||||
const skipOnNode17 = process.version.split('.')[0] === 'v17' ? test.skip : test
|
||||
const skipOnNode17 = ['v14', 'v16'].includes(process.version.split('.')[0]) ? test : test.skip
|
||||
|
||||
test('a package that need authentication', async () => {
|
||||
const project = prepareEmpty()
|
||||
|
||||
Reference in New Issue
Block a user