[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

test: make tests longer

Vladimir Sheremet (Jan 4, 2024, 6:16 PM +0100) 0ec20512 be5a259d

+3 -2
+1
test/snapshots/vitest.config.ts
··· 8 8 snapshotFormat: { 9 9 printBasicPrototype: true, 10 10 }, 11 + testTimeout: process.env.CI ? 60_000 : 5_000, 11 12 }, 12 13 })
+2 -2
test/core/test/wait.test.ts
··· 122 122 123 123 await expect( 124 124 vi.waitUntil(callback, { 125 - timeout: 100, 126 - interval: 75, 125 + timeout: 1000, 126 + interval: 600, 127 127 }), 128 128 ).rejects.toThrowErrorMatchingInlineSnapshot(`[Error: Timed out in waitUntil!]`) 129 129