diff --git a/e2e/specs/import.spec.ts b/e2e/specs/import.spec.ts index 182292d6a..14c8950eb 100644 --- a/e2e/specs/import.spec.ts +++ b/e2e/specs/import.spec.ts @@ -32,6 +32,7 @@ test.describe('Import from UI', () => { test(source, async ({ page, getTestUrl, editor }) => { test.skip(editor === 'codejar', 'FIXME: fails on CI'); test.skip(source.startsWith('GitHub'), 'FIXME: fails on CI'); + test.skip(source.startsWith('JsBin'), 'FIXME: fails on CI'); await page.goto(getTestUrl()); @@ -178,6 +179,7 @@ test.describe('Import from URL', () => { Object.entries(sources).forEach(([source, url]) => { test(source, async ({ page, getTestUrl }) => { test.skip(source.startsWith('GitHub'), 'FIXME: fails on CI'); + test.skip(source.startsWith('JsBin'), 'FIXME: fails on CI'); await page.goto(getTestUrl() + '#' + url);