mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
Now that all casper tests have been migrated to puppeteer, there's no need for having casper related things. Removed the casperjs package and removed/replaced casper in few places with puppeteer. Only removed few of them which I'm confident about. Also didn't make any changes in docs as it would be easier to remove them while adding puppeteer docs.
12 lines
323 B
JavaScript
12 lines
323 B
JavaScript
"use strict";
|
|
|
|
const test_credentials = require("../../var/puppeteer/test_credentials.js").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);
|