Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion dev-packages/browser-integration-tests/utils/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,10 @@ export function shouldSkipTracingTest(): boolean {
* @returns `true` if we should skip the feedback test
*/
export function shouldSkipFeedbackTest(): boolean {
// TODO(fn): For now we are skipping feedback tests in all bundles, until we have a proper way to test them.
// We need to make sure lazy loading works on release branches...
const bundle = process.env.PW_BUNDLE as string | undefined;
return bundle != null && !bundle.includes('feedback') && !bundle.includes('esm') && !bundle.includes('cjs');
return !!bundle && bundle.startsWith('bundle');
}

/**
Expand Down