Merge pull request #13988 from calixteman/issue13987
Avoid an error in integration test because of a locale different of en-US
This commit is contained in:
commit
168aa5efb1
@ -17,6 +17,22 @@ exports.loadAndWait = (filename, selector) =>
|
|||||||
Promise.all(
|
Promise.all(
|
||||||
global.integrationSessions.map(async session => {
|
global.integrationSessions.map(async session => {
|
||||||
const page = await session.browser.newPage();
|
const page = await session.browser.newPage();
|
||||||
|
|
||||||
|
// In order to avoid errors because of checks which depend on
|
||||||
|
// a locale.
|
||||||
|
await page.evaluateOnNewDocument(() => {
|
||||||
|
Object.defineProperty(navigator, "language", {
|
||||||
|
get() {
|
||||||
|
return "en-US";
|
||||||
|
},
|
||||||
|
});
|
||||||
|
Object.defineProperty(navigator, "languages", {
|
||||||
|
get() {
|
||||||
|
return ["en-US", "en"];
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
await page.goto(
|
await page.goto(
|
||||||
`${global.integrationBaseUrl}?file=/test/pdfs/${filename}`
|
`${global.integrationBaseUrl}?file=/test/pdfs/${filename}`
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user