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
2 changes: 2 additions & 0 deletions tests/library/page-event-crash.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* limitations under the License.
*/

import { utils } from '../../packages/playwright-core/lib/coreBundle';
import { contextTest as testBase, expect } from '../config/browserTest';

const test = testBase.extend<{ crash: () => void }, { dummy: string }>({
Expand All @@ -35,6 +36,7 @@ const test = testBase.extend<{ crash: () => void }, { dummy: string }>({
test.beforeEach(({ platform, browserName, channel }) => {
test.slow(platform === 'linux' && (browserName === 'webkit'), 'WebKit/Linux tests are consistently slower on some Linux environments. Most likely WebContent process is not getting terminated properly and is causing the slowdown.');
test.fixme(channel === 'webkit-wsl', 'WebKit on WSL is even slower than above ^^ - skipping for now');
test.skip(browserName === 'chromium' && utils.hostPlatform.startsWith('ubuntu24.04'), 'never dispatches the crash event');
});

test('should emit crash event when page crashes', async ({ page, crash }) => {
Expand Down
Loading