Skip to content

Commit 3105efe

Browse files
authored
chore(repo): Skip flaky test (#5669)
1 parent f707756 commit 3105efe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

integration/tests/resiliency.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,8 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withEmailCodes] })('resilienc
227227
await expect(page.getByText('Clerk is loading', { exact: true })).toBeHidden();
228228
});
229229

230-
test('clerk-js environment fails and status degraded', async ({ page, context }) => {
230+
// TODO: Fix flakiness when intercepting environment requests
231+
test.skip('clerk-js environment fails and status degraded', async ({ page, context }) => {
231232
const u = createTestUtils({ app, page, context });
232233

233234
await page.route('**/v1/environment?**', route => route.fulfill(make500ClerkResponse()));

0 commit comments

Comments
 (0)