We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8352645 commit 92840eeCopy full SHA for 92840ee
tests/smoke/deploy.test.ts
@@ -71,9 +71,13 @@ describe('version check', () => {
71
)
72
},
73
74
- test('yarn monorepo multiple next versions site is compatible', { retry: 0 }, async () => {
75
- await smokeTest(selfCleaningFixtureFactories.yarnMonorepoMultipleNextVersionsSiteCompatible)
76
- })
+ test.only(
+ 'yarn monorepo multiple next versions site is compatible',
+ { retry: 0, timeout: 1_000 * 60 * 5 },
77
+ async () => {
78
+ await smokeTest(selfCleaningFixtureFactories.yarnMonorepoMultipleNextVersionsSiteCompatible)
79
+ },
80
+ )
81
82
test(
83
'yarn monorepo multiple next versions site is incompatible should not deploy',
0 commit comments