Skip to content

Commit

Permalink
test: increase codemods timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Oct 18, 2023
1 parent c304024 commit 164775e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/commands/configure.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ test.group('Configure command | run', (group) => {
const packageJson = await fs.contentsJson('package.json')
assert.deepEqual(packageJson.dependencies, { 'is-even': '^1.0.0' })
assert.deepEqual(packageJson.devDependencies, { 'is-odd': '^2.0.0' })
}).timeout(5000)
}).timeout(60 * 1000)

test('install packages using pnpm when pnpm-lock file exists', async ({ assert, fs }) => {
const ace = await new AceFactory().make(fs.baseUrl, {
Expand Down Expand Up @@ -387,7 +387,7 @@ test.group('Configure command | run', (group) => {
message: '[ cyan(wait) ] installing dependencies using pnpm . ',
stream: 'stdout',
})
})
}).timeout(60 * 1000)

test('install packages using npm when package-lock file exists', async ({ assert, fs }) => {
const ace = await new AceFactory().make(fs.baseUrl, {
Expand Down Expand Up @@ -424,7 +424,7 @@ test.group('Configure command | run', (group) => {
message: '[ cyan(wait) ] installing dependencies using npm . ',
stream: 'stdout',
})
})
}).timeout(60 * 1000)

test('display error when installing packages', async ({ assert, fs }) => {
const ace = await new AceFactory().make(fs.baseUrl, {
Expand Down

0 comments on commit 164775e

Please sign in to comment.