parent
446fc1af0b
commit
a2a4c70cf5
@ -0,0 +1,5 @@
|
||||
module.exports = {
|
||||
"launch": {
|
||||
"headless": false
|
||||
}
|
||||
};
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,21 @@
|
||||
beforeAll(() => {
|
||||
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
return console.log("Cleanup");
|
||||
});
|
||||
|
||||
describe("Very Simple Test", () => {
|
||||
|
||||
const title = "Uptime Kuma";
|
||||
|
||||
beforeAll(async () => {
|
||||
await page.goto("http://127.0.0.1:3002");
|
||||
});
|
||||
|
||||
it(`should be titled "${title}"`, async () => {
|
||||
await expect(page.title()).resolves.toMatch(title);
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in new issue