Skip to content

Commit

Permalink
test: don't skip deep recursion test
Browse files Browse the repository at this point in the history
  • Loading branch information
zkochan committed May 7, 2024
1 parent d6d31d6 commit fd6cd27
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions pkg-manager/core/test/install/deepRecursive.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
import fs from 'fs'
import { prepareEmpty } from '@pnpm/prepare'
import { addDependenciesToPackage } from '@pnpm/core'
import { isCI } from 'ci-info'
import { testDefaults } from '../utils'

const testSkipOnCI = isCI ? test.skip : test

// Looks like GitHub Actions have reduced memory limit for Node.js,
// so it fails in CI at the moment.
testSkipOnCI('a package with a huge amount of circular dependencies and many peer dependencies should successfully be resolved', async () => {
test('a package with a huge amount of circular dependencies and many peer dependencies should successfully be resolved', async () => {
prepareEmpty()

await addDependenciesToPackage({},
Expand Down

0 comments on commit fd6cd27

Please sign in to comment.