Skip to content

Commit f572cb4

Browse files
[tests] skip flakey gatsby test (#12244)
This test is failing consistently. Example: https://github.com/vercel/vercel/actions/runs/11236739944/job/31240717514?pr=12242#step:8:5519 ``` vercel:test: ● deploy gatsby twice and print cached directories vercel:test: vercel:test: thrown: "Exceeded timeout of 360000 ms for a test. vercel:test: Add a timeout value to this test to increase the timeout, if this is a long-running test. See https://jestjs.io/docs/api#testname-fn-timeout." vercel:test: vercel:test: 735 | }); vercel:test: 736 | vercel:test: > 737 | test( vercel:test: | ^ vercel:test: 738 | 'deploy gatsby twice and print cached directories', vercel:test: 739 | async () => { vercel:test: 740 | const directory = example('gatsby'); vercel:test: vercel:test: at Object.<anonymous> (test/integration-2.test.ts:737:1) vercel:test: at runMicrotasks (<anonymous>) ```
1 parent daa2d21 commit f572cb4

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.changeset/orange-drinks-trade.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"vercel": patch
3+
---
4+
5+
[tests] skip flakey gatsby test

packages/cli/test/integration-2.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,8 @@ test('`vc --debug project ls` should output the projects listing', async () => {
734734
expect(stderr).toContain('> Projects found under');
735735
});
736736

737-
test(
737+
// eslint-disable-next-line jest/no-disabled-tests
738+
test.skip(
738739
'deploy gatsby twice and print cached directories',
739740
async () => {
740741
const directory = example('gatsby');

0 commit comments

Comments
 (0)