From 145359e2260ddf78f0548c880aa15050cea86be6 Mon Sep 17 00:00:00 2001 From: Bryan Mauger Date: Mon, 29 Aug 2022 10:13:45 -0400 Subject: [PATCH] Update jest file and router file. --- jest.config.js | 1 - src/router/index.js | 6 ------ 2 files changed, 7 deletions(-) diff --git a/jest.config.js b/jest.config.js index 6877c873d..590e0f0a9 100644 --- a/jest.config.js +++ b/jest.config.js @@ -19,7 +19,6 @@ module.exports = { "!src/layouts/reveal/**/*.vue", "!src/ux-components/text-link/**/*.vue", "!src/common-components/question-chain/**/*.vue", - "!src/common-components/text-block/**/*.vue", "!src/layouts/quote/**/*.vue", // Temporary "!src/layouts/vin-lookup/**/*.vue", //Temporary for Quote page testing // END diff --git a/src/router/index.js b/src/router/index.js index d07bf23e4..09299a2e5 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -23,7 +23,6 @@ import { applicationConfig } from "../constants/application-config"; // Components import quote from "@/layouts/quote/quote.vue"; -import textBlock from "@/common-components/text-block/text-block"; const routes = [ { @@ -31,11 +30,6 @@ const routes = [ name: "quote", component: quote, }, - { - path: "/text-block", // This is a temporary route for testing. - name: "textBlock", - component: textBlock, - }, { path: "/", name: "root",