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 df4b266 commit b1aaee4Copy full SHA for b1aaee4
e2e/adapters-e2e/tests/express.spec.ts
@@ -1,5 +1,12 @@
1
import { expect, test } from '@playwright/test';
2
3
+test.beforeEach(async ({ page }) => {
4
+ page.on('console', (msg) => {
5
+ // eslint-disable-next-line no-console
6
+ console.log(`[browser ${msg.type()}] ${msg.text()}`);
7
+ });
8
+});
9
+
10
test.describe('Verifying Express Adapter', () => {
11
test('should ignore unknown qdata', async ({ page, request }) => {
12
page.goto('/');
0 commit comments