Skip to content

Commit 8396c5e

Browse files
committed
fix skip tests not for esm/cjs npm package exports
1 parent d02fd62 commit 8396c5e

File tree

1 file changed

+1
-1
lines changed
  • dev-packages/browser-integration-tests/utils

1 file changed

+1
-1
lines changed

dev-packages/browser-integration-tests/utils/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ export function shouldSkipTracingTest(): boolean {
319319
*/
320320
export function testingCdnBundle(): boolean {
321321
const bundle = process.env.PW_BUNDLE;
322-
return bundle != null;
322+
return bundle != null && (bundle.startsWith('bundle') || bundle.startsWith('loader'));
323323
}
324324

325325
/**

0 commit comments

Comments
 (0)