Skip to content

Commit

Permalink
Merge pull request #26072 from storybookjs/kasper/fix-flaky-tests
Browse files Browse the repository at this point in the history
Build: Re-enable flaky tests
  • Loading branch information
kasperpeulen committed Feb 19, 2024
2 parents ed46f1c + c4db489 commit 5416e5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions code/e2e-tests/addon-docs.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
3 changes: 1 addition & 2 deletions code/e2e-tests/tags.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 5416e5a

Please sign in to comment.