Tests: Fix formatting
This commit is contained in:
parent
c2859d4764
commit
835112d268
2 changed files with 12 additions and 6 deletions
|
@ -5,9 +5,12 @@ import Page from "../acceptance/page-model";
|
||||||
fixture`Test authentication`.page`${testcafeconfig.url}`;
|
fixture`Test authentication`.page`${testcafeconfig.url}`;
|
||||||
|
|
||||||
const page = new Page();
|
const page = new Page();
|
||||||
test.meta("testID", "authentication-000")("Time to start instance (will be marked as unstable)", async (t) => {
|
test.meta("testID", "authentication-000")(
|
||||||
await t.wait(5000);
|
"Time to start instance (will be marked as unstable)",
|
||||||
});
|
async (t) => {
|
||||||
|
await t.wait(5000);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
test.meta("testID", "authentication-001")("Login and Logout", async (t) => {
|
test.meta("testID", "authentication-001")("Login and Logout", async (t) => {
|
||||||
//await t.wait(800000);
|
//await t.wait(800000);
|
||||||
|
|
|
@ -6,9 +6,12 @@ fixture`Test albums`.page`${testcafeconfig.url}`;
|
||||||
|
|
||||||
const page = new Page();
|
const page = new Page();
|
||||||
|
|
||||||
test.meta("testID", "authentication-000")("Time to start instance (will be marked as unstable)", async (t) => {
|
test.meta("testID", "authentication-000")(
|
||||||
await t.wait(5000);
|
"Time to start instance (will be marked as unstable)",
|
||||||
});
|
async (t) => {
|
||||||
|
await t.wait(5000);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
test.meta("testID", "albums-001")("Create/delete album on /albums", async (t) => {
|
test.meta("testID", "albums-001")("Create/delete album on /albums", async (t) => {
|
||||||
await page.openNav();
|
await page.openNav();
|
||||||
|
|
Loading…
Reference in a new issue