mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-29 01:53:54 +03:00
c711fb35ad
Support for displayName was removed in Node 16. Switching to Function.name instead. Relevant V8 change: https://chromium-review.googlesource.com/c/v8/v8/+/2692189
7 lines
242 B
JavaScript
7 lines
242 B
JavaScript
const { test, expect } = require('@playwright/test');
|
|
|
|
test('failing test', async ({ page }) => {
|
|
await page.setContent(`<div>hello</div><span>world</span>`);
|
|
await expect(page.locator('span')).toHaveText('hello', { timeout: 1000 });
|
|
});
|