This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
<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>
|
<v-card :data-cy="!!$ay.dev ? 'licenseCard' : false">
|
||||||
<v-list two-line subheader>
|
<v-list two-line subheader>
|
||||||
<v-subheader>{{ $ay.t("HelpLicense") }}</v-subheader>
|
<v-subheader>{{ $ay.t("HelpLicense") }}</v-subheader>
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
:singleSelect="false"
|
:singleSelect="false"
|
||||||
:reload="reload"
|
:reload="reload"
|
||||||
v-on:selection-change="handleSelected"
|
v-on:selection-change="handleSelected"
|
||||||
|
:data-cy="!!$ay.dev ? 'transTable' : false"
|
||||||
>
|
>
|
||||||
</gz-data-table>
|
</gz-data-table>
|
||||||
<v-file-input
|
<v-file-input
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
:sort-by="['name']"
|
:sort-by="['name']"
|
||||||
show-select
|
show-select
|
||||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||||
|
:data-cy="!!$ay.dev ? 'usersTable' : false"
|
||||||
>
|
>
|
||||||
<template v-slot:[`item.active`]="{ item }">
|
<template v-slot:[`item.active`]="{ item }">
|
||||||
<v-simple-checkbox v-model="item.active" disabled></v-simple-checkbox>
|
<v-simple-checkbox v-model="item.active" disabled></v-simple-checkbox>
|
||||||
|
|||||||
@@ -145,15 +145,19 @@ 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=underconstruction]");
|
cy.get("[data-cy=licenseCard]");
|
||||||
|
|
||||||
cy.visit("/adm-users");
|
cy.visit("/adm-users");
|
||||||
cy.url().should("include", "/adm-users");
|
cy.url().should("include", "/adm-users");
|
||||||
cy.get("[data-cy=underconstruction]");
|
cy.get("[data-cy=usersTable]");
|
||||||
|
|
||||||
cy.visit("/adm-translation");
|
cy.visit("/adm-translations");
|
||||||
cy.url().should("include", "/adm-translation");
|
cy.url().should("include", "/adm-translations");
|
||||||
cy.get("[data-cy=underconstruction]");
|
cy.get("[data-cy=transTable]");
|
||||||
|
|
||||||
|
cy.visit("/adm-translations/1");
|
||||||
|
cy.url().should("include", "/adm-translations/1");
|
||||||
|
cy.get("[data-cy=name]");
|
||||||
|
|
||||||
cy.visit("/adm-report-templates");
|
cy.visit("/adm-report-templates");
|
||||||
cy.url().should("include", "/adm-report-templates");
|
cy.url().should("include", "/adm-report-templates");
|
||||||
|
|||||||
Reference in New Issue
Block a user