test: Intl.ListFormat is working in playwright all browsers (#28178)

Fixes https://github.com/microsoft/playwright/issues/23978
This commit is contained in:
Yury Semikhatsky 2023-11-15 18:47:42 -08:00 committed by GitHub
parent aec4399d8f
commit 85438edb97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -283,3 +283,17 @@ it('should send no Content-Length header for GET requests with a Content-Type',
]); ]);
expect(request.headers['content-length']).toBe(undefined); expect(request.headers['content-length']).toBe(undefined);
}); });
it('Intl.ListFormat should work', async ({ page, server }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23978' });
await page.goto(server.EMPTY_PAGE);
const formatted = await page.evaluate(() => {
const data = ['first', 'second', 'third'];
const listFormat = new Intl.ListFormat('en', {
type: 'disjunction',
style: 'short',
});
return listFormat.format(data);
});
expect(formatted).toBe('first, second, or third');
});