We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa2211f commit 19e491aCopy full SHA for 19e491a
dev-packages/browser-integration-tests/utils/helpers.ts
@@ -248,10 +248,8 @@ export function shouldSkipTracingTest(): boolean {
248
* @returns `true` if we should skip the feedback test
249
*/
250
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...
253
const bundle = process.env.PW_BUNDLE as string | undefined;
254
- return !!bundle && bundle.startsWith('bundle');
+ return bundle != null && !bundle.includes('feedback') && !bundle.includes('esm') && !bundle.includes('cjs');
255
}
256
257
/**
0 commit comments