test: fix large string expectations (#16388)
This commit is contained in:
parent
baa2ef2700
commit
e20baacc9c
|
|
@ -141,7 +141,7 @@ it('should work with large strings', async ({ page }) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should work with large unicode strings', async ({ page, browserName, platform }) => {
|
it('should work with large unicode strings', async ({ page, browserName, platform }) => {
|
||||||
it.fail(browserName === 'firefox' && platform !== 'linux');
|
it.fixme(browserName === 'firefox' && platform === 'darwin');
|
||||||
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/16367' });
|
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/16367' });
|
||||||
|
|
||||||
const expected = '🎭'.repeat(10000);
|
const expected = '🎭'.repeat(10000);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue