This commit is contained in:
2020-10-20 20:42:03 +00:00
parent 776217addc
commit 28d2443368
6 changed files with 9 additions and 8 deletions

View File

@@ -1,6 +1,7 @@
{ {
"pluginsFile": "tests/e2e/plugins/index.js", "pluginsFile": "tests/e2e/plugins/index.js",
"baseUrl": "http://localhost:7575", "baseUrl": "http://localhost:7575",
"defaultCommandTimeout":10000,
"env": { "env": {
"adminusername": "superuser", "adminusername": "superuser",
"adminpassword": "l3tm3in" "adminpassword": "l3tm3in"

View File

@@ -1 +1 @@
npm run test:front npm run test:front-debug

View File

@@ -1,4 +1,4 @@
export default { export default {
version: "8.0.0-alpha.83", version: "8.0.0-alpha.84",
copyright: "© 1999-2020, Ground Zero Tech-Works Inc." copyright: "© 1999-2020, Ground Zero Tech-Works Inc."
}; };

View File

@@ -2,12 +2,12 @@
<v-row v-if="formState.ready"> <v-row v-if="formState.ready">
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error> <gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
<v-col> <v-col>
<v-form ref="form"> <v-form ref="form" data-cy="licenseForm">
<v-row align="start" justify="center"> <v-row align="start" justify="center">
<template v-if="showLicenseUi() == 'ok'"> <template v-if="showLicenseUi() == 'ok'">
<!-- Normal active license UI --> <!-- Normal active license UI -->
<v-col cols="12" md="7"> <v-col cols="12" md="7">
<v-card data-cy="licenseCard"> <v-card>
<v-list two-line subheader> <v-list two-line subheader>
<v-subheader>{{ $ay.t("HelpLicense") }}</v-subheader> <v-subheader>{{ $ay.t("HelpLicense") }}</v-subheader>

View File

@@ -165,7 +165,7 @@ describe("SMOKE", () => {
cy.visit("/adm-license"); cy.visit("/adm-license");
cy.url().should("include", "/adm-license"); cy.url().should("include", "/adm-license");
cy.get("[data-cy=licenseCard]"); cy.get("[data-cy=licenseForm]");
cy.visit("/adm-users"); cy.visit("/adm-users");
cy.url().should("include", "/adm-users"); cy.url().should("include", "/adm-users");

View File

@@ -14,7 +14,7 @@ describe("TRANSLATION", () => {
.clear() .clear()
.type("fr{enter}"); .type("fr{enter}");
cy.wait(25); cy.wait(50);
//nav to about form //nav to about form
cy.get("[data-cy=contextmenu]").click(); cy.get("[data-cy=contextmenu]").click();
@@ -47,7 +47,7 @@ describe("TRANSLATION", () => {
.clear() .clear()
.type("es{enter}"); .type("es{enter}");
cy.wait(25); cy.wait(50);
//nav to about form //nav to about form
cy.get("[data-cy=contextmenu]").click(); cy.get("[data-cy=contextmenu]").click();
@@ -76,7 +76,7 @@ describe("TRANSLATION", () => {
.clear() .clear()
.type("de{enter}"); .type("de{enter}");
cy.wait(25); cy.wait(50);
//nav to about form //nav to about form
cy.get("[data-cy=contextmenu]").click(); cy.get("[data-cy=contextmenu]").click();