Skip to content

Commit

Permalink
test count
Browse files Browse the repository at this point in the history
  • Loading branch information
3ch023 committed Dec 20, 2024
1 parent 01aab9d commit 4b51087
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions nala/studio/studio.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ let studio;
const { features } = studiopkg;

test.beforeEach(async ({ page, browserName }) => {
test.skip(
browserName !== 'chromium',
'Not supported to run on multiple browsers.',
);
studio = new StudioPage(page);
});

Expand Down Expand Up @@ -51,7 +47,7 @@ test.describe('M@S Studio feature test suite', () => {
await expect(await studio.renderView).toBeVisible();

const cards = await studio.renderView.locator('merch-card');
expect(await cards.count()).toBe(2);
expect(await cards.count()).toBe(5);
});
});
});

0 comments on commit 4b51087

Please sign in to comment.