Skip to content

Commit

Permalink
test: fix component tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalets committed Mar 11, 2024
1 parent ca4e28f commit b304ee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/component-tests/test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const pwVersion = getPackageVersion('@playwright/test');
test(getTestName(import.meta), (t) => {
execPlaywrightTest(t.name, {
env: {
NATIVE_MERGE_TESTS: pwVersion >= '1.39.0',
NATIVE_MERGE_TESTS: pwVersion >= '1.39.0' ? '1' : '',
},
});
});

0 comments on commit b304ee6

Please sign in to comment.