Skip to content

Commit 19e491a

Browse files
committed
Revert "test: Skip feedback tests on CDN (#11888)"
This reverts commit aa2211f.
1 parent aa2211f commit 19e491a

File tree

1 file changed

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

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,10 +248,8 @@ export function shouldSkipTracingTest(): boolean {
248248
* @returns `true` if we should skip the feedback test
249249
*/
250250
export function shouldSkipFeedbackTest(): boolean {
251-
// TODO(fn): For now we are skipping feedback tests in all bundles, until we have a proper way to test them.
252-
// We need to make sure lazy loading works on release branches...
253251
const bundle = process.env.PW_BUNDLE as string | undefined;
254-
return !!bundle && bundle.startsWith('bundle');
252+
return bundle != null && !bundle.includes('feedback') && !bundle.includes('esm') && !bundle.includes('cjs');
255253
}
256254

257255
/**

0 commit comments

Comments
 (0)