Skip to content

Commit

Permalink
Make the whole VizReg Playwright project to be fully parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
ciampo committed Feb 24, 2023
1 parent 7f36b8c commit 735d9d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions test/storybook-playwright/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const config: PlaywrightTestConfig = {
reporter: [
[ 'html', { open: 'on-failure', outputFolder: 'test-results/report' } ],
],
fullyParallel: true,
};

export default config;
2 changes: 1 addition & 1 deletion test/storybook-playwright/specs/hstack.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const PROP_VALUES_TO_TEST = [
},
];

test.describe.parallel( 'HStack', () => {
test.describe( 'HStack', () => {
test.beforeEach( async ( { page } ) => {
await gotoStoryId( page, 'components-experimental-hstack--default', {
decorators: { marginChecker: 'show', customE2EControls: 'show' },
Expand Down
2 changes: 1 addition & 1 deletion test/storybook-playwright/specs/vstack.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const PROP_VALUES_TO_TEST = [
},
];

test.describe.parallel( 'VStack', () => {
test.describe( 'VStack', () => {
test.beforeEach( async ( { page } ) => {
await gotoStoryId( page, 'components-experimental-vstack--default', {
decorators: { marginChecker: 'show', customE2EControls: 'show' },
Expand Down

0 comments on commit 735d9d2

Please sign in to comment.