We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f707756 commit 3105efeCopy full SHA for 3105efe
integration/tests/resiliency.test.ts
@@ -227,7 +227,8 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withEmailCodes] })('resilienc
227
await expect(page.getByText('Clerk is loading', { exact: true })).toBeHidden();
228
});
229
230
- test('clerk-js environment fails and status degraded', async ({ page, context }) => {
+ // TODO: Fix flakiness when intercepting environment requests
231
+ test.skip('clerk-js environment fails and status degraded', async ({ page, context }) => {
232
const u = createTestUtils({ app, page, context });
233
234
await page.route('**/v1/environment?**', route => route.fulfill(make500ClerkResponse()));
0 commit comments