diff --git a/code/e2e-tests/addon-docs.spec.ts b/code/e2e-tests/addon-docs.spec.ts index 9be08c4b674a..4ae3da33e99e 100644 --- a/code/e2e-tests/addon-docs.spec.ts +++ b/code/e2e-tests/addon-docs.spec.ts @@ -34,8 +34,7 @@ test.describe('addon-docs', () => { await expect(anotherStory).toContainText('Another button, just to show multiple stories'); }); - // FIXME - get rid of the flake - test.skip('should show source=code view for stories', async ({ page }) => { + test('should show source=code view for stories', async ({ page }) => { const skipped = [ // SSv6 does not render stories in the correct order in our sandboxes 'internal\\/ssv6', diff --git a/code/e2e-tests/tags.spec.ts b/code/e2e-tests/tags.spec.ts index e3d79723c8f8..37fb76fb814c 100644 --- a/code/e2e-tests/tags.spec.ts +++ b/code/e2e-tests/tags.spec.ts @@ -3,8 +3,7 @@ import { SbPage } from './util'; const storybookUrl = process.env.STORYBOOK_URL || 'http://localhost:8001'; -// FIXME - get rid of the flake -test.describe.skip('tags', () => { +test.describe('tags', () => { test.beforeEach(async ({ page }) => { await page.goto(storybookUrl); await new SbPage(page).waitUntilLoaded();