Skip to content

Commit

Permalink
chore: increase create environment test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
corker committed May 19, 2023
1 parent ddc420b commit e79bc33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/runCreateEnvironmentCommand.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ it('with global home dir', async () => {
const vars = await getMicromambaEnvVariables({ micromambaParams, environmentParams })
const env = Object.fromEntries(vars.map((x) => [x.name, x.value]))
expect(() => execSync('node --version', { env, encoding: 'utf8' })).not.toThrow()
}, 100000)
}, 200000)

it('with local home dir', async () => {
const ch = {}
Expand Down Expand Up @@ -121,4 +121,4 @@ it('with local home dir', async () => {
const vars = await getMicromambaEnvVariables({ micromambaParams, environmentParams })
const env = Object.fromEntries(vars.map((x) => [x.name, x.value]))
expect(() => execSync('node --version', { env, encoding: 'utf8' })).not.toThrow()
}, 100000)
}, 200000)

0 comments on commit e79bc33

Please sign in to comment.