mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
This allows import/order to auto-fix blocks including these statements. Signed-off-by: Anders Kaseorg <anders@zulip.com>
12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
"use strict";
|
|
|
|
const {test_credentials} = require("../../var/puppeteer/test_credentials");
|
|
const common = require("../puppeteer_lib/common");
|
|
|
|
async function login_tests(page) {
|
|
await common.log_in(page, test_credentials.default_user);
|
|
await common.log_out(page);
|
|
}
|
|
|
|
common.run_test(login_tests);
|