tutu/test/sign-in.spec.ts
2024-12-21 17:19:43 +08:00

11 lines
359 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.beTheCurrentPage));
});
});