1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-12-10 10:10:14 +02:00
uptime-kuma/test/test.spec.js

22 lines
365 B
JavaScript
Raw Normal View History

2021-10-03 12:16:55 +02:00
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);
});
});