puppeteer_tests: Remove login test.

This commit deletes the `01-login.ts` test because it was
redundant, We are already checking for log-in in all the
other tests.
This commit is contained in:
Riken Shah
2021-04-01 01:10:49 +05:30
committed by Tim Abbott
parent 0023d561dd
commit 08212ef74a
4 changed files with 2 additions and 12 deletions

View File

@@ -1,10 +0,0 @@
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);
}
common.run_test(login_tests);