36 lines
988 B
TypeScript
36 lines
988 B
TypeScript
/// <reference types="jest-playwright-preset" />
|
|
|
|
// This test is for nothing more than to make sure
|
|
// tests are running in multiple browsers
|
|
describe("Browser gutcheck", () => {
|
|
beforeEach(async () => {
|
|
await jestPlaywright.resetBrowser({
|
|
logger: {
|
|
isEnabled: (name) => name === "browser",
|
|
log: (name, severity, message, args) => console.log(`${name} ${message}`),
|
|
},
|
|
})
|
|
})
|
|
|
|
test("should display correct browser based on userAgent", async () => {
|
|
const displayNames = {
|
|
chromium: "Chrome",
|
|
firefox: "Firefox",
|
|
webkit: "Safari",
|
|
}
|
|
const userAgent = await page.evaluate("navigator.userAgent")
|
|
|
|
if (browserName === "chromium") {
|
|
expect(userAgent).toContain(displayNames[browserName])
|
|
}
|
|
|
|
if (browserName === "firefox") {
|
|
expect(userAgent).toContain(displayNames[browserName])
|
|
}
|
|
|
|
if (browserName === "webkit") {
|
|
expect(userAgent).toContain(displayNames[browserName])
|
|
}
|
|
})
|
|
})
|