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