tutu/test/sign-in.spec.ts
thislight ee31c38f32
All checks were successful
/ depoly (push) Successful in 1m26s
fix #52: correct the StackedRouter on 'replace'
2024-12-21 20:20:27 +08:00

13 lines
435 B
TypeScript

import { expect } from "@wdio/globals";
import { SignInPage } from "./objects/accounts.js";
import { IndexPage } from "./objects/timelines.js";
describe("The index page", () => {
it("jumps to the sign-in page if no account signed in", async () => {
await IndexPage.open("");
expect(await browser.waitUntil(SignInPage.urlIsTheCurrent));
expect(await browser.waitUntil(SignInPage.serverUrlInput.isDisplayed));
});
});