diff --git a/packages/insomnia-smoke-test/cli/cli.test.ts b/packages/insomnia-smoke-test/cli/cli.test.ts index 31677f29d15f..024a48d1b84e 100644 --- a/packages/insomnia-smoke-test/cli/cli.test.ts +++ b/packages/insomnia-smoke-test/cli/cli.test.ts @@ -1,11 +1,10 @@ -import { describe, expect, it, jest } from '@jest/globals'; +import { describe, expect, it } from '@jest/globals'; import execa from 'execa'; import path from 'path'; const binPath = path.resolve('../insomnia-inso/binaries/inso'); describe('inso basic features', () => { - jest.setTimeout(30000); describe('run test', () => { it('should not fail running tests', async () => { const { failed } = await execa(binPath, [ @@ -20,7 +19,7 @@ describe('inso basic features', () => { ]); expect(failed).toBe(false); - }); + }, 20 * 1000); }); describe('generate config', () => {