This commit is contained in:
@@ -2,7 +2,10 @@
|
|||||||
<v-row v-if="this.formState.ready">
|
<v-row v-if="this.formState.ready">
|
||||||
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
||||||
<v-col>
|
<v-col>
|
||||||
<v-card id="ayaNovaVersioncard">
|
<v-card
|
||||||
|
id="ayaNovaVersioncard"
|
||||||
|
:data-cy="!!$ay.dev ? 'versionCard' : false"
|
||||||
|
>
|
||||||
<v-subheader>AyaNova App</v-subheader>
|
<v-subheader>AyaNova App</v-subheader>
|
||||||
<div>
|
<div>
|
||||||
<span class="ml-6 body-1">{{ $ay.t("Version") }}: </span>
|
<span class="ml-6 body-1">{{ $ay.t("Version") }}: </span>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-row v-if="formState.ready">
|
<v-row v-if="formState.ready">
|
||||||
<v-col>
|
<v-col>
|
||||||
<v-form ref="form">
|
<v-form ref="form" :data-cy="!!$ay.dev ? 'customizeForm' : false">
|
||||||
<v-row>
|
<v-row>
|
||||||
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
||||||
<template v-for="item in obj">
|
<template v-for="item in obj">
|
||||||
|
|||||||
@@ -10,7 +10,10 @@
|
|||||||
<v-col rows="12">
|
<v-col rows="12">
|
||||||
<template v-if="$route.params.userlog">
|
<template v-if="$route.params.userlog">
|
||||||
<!-- **** USER LOG ****** -->
|
<!-- **** USER LOG ****** -->
|
||||||
<v-timeline :dense="$vuetify.breakpoint.smAndDown">
|
<v-timeline
|
||||||
|
:dense="$vuetify.breakpoint.smAndDown"
|
||||||
|
:data-cy="!!$ay.dev ? 'timeLine' : false"
|
||||||
|
>
|
||||||
<v-timeline-item
|
<v-timeline-item
|
||||||
v-for="i in obj"
|
v-for="i in obj"
|
||||||
:key="i.index"
|
:key="i.index"
|
||||||
@@ -47,7 +50,10 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<!-- **** OBJECT LOG ****** -->
|
<!-- **** OBJECT LOG ****** -->
|
||||||
<v-timeline :dense="$vuetify.breakpoint.smAndDown">
|
<v-timeline
|
||||||
|
:dense="$vuetify.breakpoint.smAndDown"
|
||||||
|
:data-cy="!!$ay.dev ? 'timeLine' : false"
|
||||||
|
>
|
||||||
<v-timeline-item
|
<v-timeline-item
|
||||||
v-for="i in obj"
|
v-for="i in obj"
|
||||||
:key="i.index"
|
:key="i.index"
|
||||||
|
|||||||
@@ -2,7 +2,13 @@
|
|||||||
<v-row v-if="this.formState.ready">
|
<v-row v-if="this.formState.ready">
|
||||||
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
||||||
<v-col>
|
<v-col>
|
||||||
<v-textarea v-model="logText" full-width readonly auto-grow></v-textarea>
|
<v-textarea
|
||||||
|
v-model="logText"
|
||||||
|
full-width
|
||||||
|
readonly
|
||||||
|
auto-grow
|
||||||
|
:data-cy="!!$ay.dev ? 'logText' : false"
|
||||||
|
></v-textarea>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -15,6 +15,7 @@
|
|||||||
:dataListSort="dataListSort"
|
:dataListSort="dataListSort"
|
||||||
:showSelect="rights.change"
|
:showSelect="rights.change"
|
||||||
v-on:selection-change="handleSelected"
|
v-on:selection-change="handleSelected"
|
||||||
|
:data-cy="!!$ay.dev ? 'widgetsTable' : false"
|
||||||
>
|
>
|
||||||
</gz-data-table>
|
</gz-data-table>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -201,22 +201,22 @@ describe("SMOKE", () => {
|
|||||||
|
|
||||||
cy.visit("/about");
|
cy.visit("/about");
|
||||||
cy.url().should("include", "/about");
|
cy.url().should("include", "/about");
|
||||||
cy.get("[data-cy=underconstruction]");
|
cy.get("[data-cy=versionCard]");
|
||||||
|
|
||||||
cy.visit("/applog");
|
cy.visit("/applog");
|
||||||
cy.url().should("include", "/applog");
|
cy.url().should("include", "/applog");
|
||||||
cy.get("[data-cy=underconstruction]");
|
cy.get("[data-cy=logText]");
|
||||||
|
|
||||||
cy.visit("/customize/Widget");
|
cy.visit("/customize/Widget");
|
||||||
cy.url().should("include", "/customize/Widget");
|
cy.url().should("include", "/customize/Widget");
|
||||||
cy.get("[data-cy=underconstruction]");
|
cy.get("[data-cy=customizeForm]");
|
||||||
|
|
||||||
cy.visit("/data-list-view/TestWidgetDataList/widget-list/0");
|
cy.visit("/data-list-view/TestWidgetDataList/widget-list/0");
|
||||||
cy.url().should(
|
cy.url().should(
|
||||||
"include",
|
"include",
|
||||||
"/data-list-view/TestWidgetDataList/widget-list"
|
"/data-list-view/TestWidgetDataList/widget-list"
|
||||||
);
|
);
|
||||||
cy.get("[data-cy=underconstruction]");
|
cy.get("[data-cy=name]");
|
||||||
|
|
||||||
cy.visit("/review/2/1");
|
cy.visit("/review/2/1");
|
||||||
cy.url().should("include", "/review/2/1");
|
cy.url().should("include", "/review/2/1");
|
||||||
@@ -224,17 +224,17 @@ describe("SMOKE", () => {
|
|||||||
|
|
||||||
cy.visit("/history/3/1");
|
cy.visit("/history/3/1");
|
||||||
cy.url().should("include", "/history/3/1");
|
cy.url().should("include", "/history/3/1");
|
||||||
cy.get("[data-cy=underconstruction]");
|
cy.get("[data-cy=timeLine]");
|
||||||
|
|
||||||
//TODO: REPORT
|
//TODO: REPORT
|
||||||
|
|
||||||
cy.visit("/widgets");
|
cy.visit("/widgets");
|
||||||
cy.url().should("include", "/widgets");
|
cy.url().should("include", "/widgets");
|
||||||
cy.get("[data-cy=underconstruction]");
|
cy.get("[data-cy=widgetsTable]");
|
||||||
|
|
||||||
cy.visit("/widgets/0");
|
cy.visit("/widgets/0");
|
||||||
cy.url().should("include", "/widgets/0");
|
cy.url().should("include", "/widgets/0");
|
||||||
cy.get("[data-cy=underconstruction]");
|
cy.get("[data-cy=name]");
|
||||||
|
|
||||||
cy.visit("/NOTFOUND");
|
cy.visit("/NOTFOUND");
|
||||||
cy.contains("404");
|
cy.contains("404");
|
||||||
|
|||||||
Reference in New Issue
Block a user