mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
12 lines
339 B
TypeScript
12 lines
339 B
TypeScript
import type {Page} from "puppeteer";
|
|
|
|
import {test_credentials} from "../../var/puppeteer/test_credentials";
|
|
import common from "../puppeteer_lib/common";
|
|
|
|
async function login_tests(page: Page): Promise<void> {
|
|
await common.log_in(page, test_credentials.default_user);
|
|
await common.log_out(page);
|
|
}
|
|
|
|
common.run_test(login_tests);
|