Skip to content

Commit

Permalink
Merge pull request #24950 from storybookjs/fix-nextjs-e2e
Browse files Browse the repository at this point in the history
Next.js: Fix E2E tests failing to navigate to story
  • Loading branch information
JReinhold authored Nov 22, 2023
2 parents 6166ab4 + e3725f8 commit 2aa45f3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions code/e2e-tests/framework-nextjs.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ test.describe('Next.js', () => {

// TODO: Test is flaky, investigate why
test.skip('should lazy load images by default', async () => {
await sbPage.navigateToStory('frameworks/nextjs/Image', 'lazy');
await sbPage.navigateToStory('stories/frameworks/nextjs/Image', 'lazy');

const img = sbPage.previewRoot().locator('img');

Expand All @@ -39,7 +39,7 @@ test.describe('Next.js', () => {

// TODO: Test is flaky, investigate why
test.skip('should eager load images when loading parameter is set to eager', async () => {
await sbPage.navigateToStory('frameworks/nextjs/Image', 'eager');
await sbPage.navigateToStory('stories/frameworks/nextjs/Image', 'eager');

const img = sbPage.previewRoot().locator('img');

Expand Down Expand Up @@ -67,7 +67,10 @@ test.describe('Next.js', () => {
test.beforeEach(async ({ page }) => {
sbPage = new SbPage(page);

await sbPage.navigateToStory('frameworks/nextjs-nextjs-default-js/Navigation', 'default');
await sbPage.navigateToStory(
'stories/frameworks/nextjs-nextjs-default-js/Navigation',
'default'
);
root = sbPage.previewRoot();
});

Expand Down Expand Up @@ -99,7 +102,7 @@ test.describe('Next.js', () => {
test.beforeEach(async ({ page }) => {
sbPage = new SbPage(page);

await sbPage.navigateToStory('frameworks/nextjs-nextjs-default-js/Router', 'default');
await sbPage.navigateToStory('stories/frameworks/nextjs-nextjs-default-js/Router', 'default');
root = sbPage.previewRoot();
});

Expand Down

0 comments on commit 2aa45f3

Please sign in to comment.