Skip to content

Commit 9239990

Browse files
committed
chore(tests): skip timeout on Windows
1 parent 8167b0d commit 9239990

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/main.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,10 @@ it(`should support hydrating package managers if cache folder was removed`, asyn
10041004
});
10051005
});
10061006

1007-
it(`should support hydrating multiple package managers from cached archives`, async () => {
1007+
it(`should support hydrating multiple package managers from cached archives`, async t => {
1008+
// Skip that test on Windows as it times out
1009+
if (process.platform === `win32`) t.skip();
1010+
10081011
await xfs.mktempPromise(async cwd => {
10091012
await expect(runCli(cwd, [`pack`, `yarn@2.2.2`, `pnpm@5.8.0`])).resolves.toMatchObject({
10101013
exitCode: 0,

0 commit comments

Comments
 (0)