Skip to content

Commit c4ef339

Browse files
committed
fix: not working image
1 parent 81b5535 commit c4ef339

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/content/guides/7.multistore/2.tooling-and-concepts/2.development/5.integration-tests.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Here's our project structure:
3737
apps/
3838
├── storefront-unified-nextjs/ # Base shared code
3939
└── stores/
40-
├── fashion-brand/
40+
├── fashion-brand/
4141
│ ├── playwright/
4242
│ ├── storefront-middleware/ # Middleware customizations
4343
│ │ └── integrations/
@@ -122,13 +122,13 @@ import { serverFactory as recommendationsEndpoints } from './recommendations/ser
122122

123123
export const mainRouterFactory = () => {
124124
const mainRouter = createRouter();
125-
125+
126126
// ... existing router setup ...
127127

128128
// Add your new mock router
129129
const recommendationsRouter = pipe(recommendationsEndpoints, createRouter());
130130
mainRouter.use(
131-
'/commerce/recommendations/**',
131+
'/commerce/recommendations/**',
132132
useBase('/commerce/recommendations', recommendationsRouter.handler)
133133
);
134134

@@ -228,7 +228,7 @@ test.describe('Recommendations page', () => {
228228

229229
// Verify recommendations are visible
230230
await expect(recommendationsPage.recommendationsGrid).toBeVisible();
231-
231+
232232
// Add more assertions as needed
233233
});
234234
});
@@ -255,7 +255,7 @@ yarn store test --store-id=fashion-brand --ui
255255
UI mode is great for debugging as it shows test execution step by step and lets you inspect the page state.
256256
::
257257

258-
![Playwright UI](/guides/6.multistore/img/running-test-in-ui-mode.png)
258+
![Playwright UI](/guides/7.multistore/img/running-test-in-ui-mode.png)
259259

260260
::
261261

@@ -274,4 +274,4 @@ Learn how Alokai handles store deployment and what happens behind the scenes.
274274
:::docs-arrow-link{to="/guides/multistore/tooling-and-concepts/deployment"}
275275
Next
276276
:::
277-
::
277+
::

0 commit comments

Comments
 (0)