This commit is contained in:
2020-12-21 18:52:05 +00:00
parent ad163f8e5d
commit fb2f979d54
2 changed files with 13 additions and 1 deletions

View File

@@ -125,12 +125,24 @@ export default new Router({
component: () =>
import(/* webpackChunkName: "ay-common" */ "./views/home-reminders.vue")
},
{
path: "/home-reminders/:recordid",
name: "reminder-edit",
component: () =>
import(/* webpackChunkName: "vend" */ "./views/ay-reminder.vue")
},
{
path: "/home-reviews",
name: "home-reviews",
component: () =>
import(/* webpackChunkName: "ay-common" */ "./views/home-reviews.vue")
},
{
path: "/home-reviews/:recordid",
name: "review-edit",
component: () =>
import(/* webpackChunkName: "vend" */ "./views/ay-review.vue")
},
{
path: "/home-user-settings",
name: "home-user-settings",

View File

@@ -33,7 +33,7 @@ describe("SMOKE", () => {
cy.visit("/home-reminders");
cy.url().should("include", "/home-reminders");
cy.get("[data-cy=underconstruction]");
cy.get("[data-cy=remindersTable]");
cy.visit("/home-reviews");
cy.url().should("include", "/home-reviews");