You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
365 B
22 lines
365 B
3 years ago
|
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);
|
||
|
});
|
||
|
});
|
||
|
|