We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c167b96 commit 388f91bCopy full SHA for 388f91b
test/cli/cli.spec.ts
@@ -22,7 +22,6 @@ const runInPath = async (path: string): Promise<string> => {
22
};
23
24
it('files are detected correctly', async () => {
25
- jest.setTimeout(20000); // this test can run up to 20 seconds
26
// given
27
const path = process.cwd() + '/test/cli/repository';
28
@@ -35,4 +34,4 @@ it('files are detected correctly', async () => {
35
34
expect(stdout).toMatch(/TS2532: Object is possibly 'undefined'/);
36
expect(stdout).toMatch(/Found 2 strict files/);
37
expect(stdout).toMatch(/2 errors found/);
38
-});
+}, 30000);
0 commit comments