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",