Merge pull request #637 from Safelite/feature/CSR-530
CSR-530 Remove test pages and routes
This commit is contained in:
commit
ed38cb125d
4 changed files with 0 additions and 57 deletions
|
|
@ -1,15 +0,0 @@
|
|||
<template>
|
||||
Test1
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "test1",
|
||||
methods: {
|
||||
arePagePrerequisitesValid() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
<template>
|
||||
Test2
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "test2",
|
||||
methods: {
|
||||
arePagePrerequisitesValid() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
@ -19,24 +19,7 @@ import eventBus from "@/helpers/event-bus/event-bus";
|
|||
import store from "@/store";
|
||||
import analyticsMixin from "@/mixins/analytics-mixin";
|
||||
|
||||
import TestOne from "@/layouts/test-one";
|
||||
import TestTwo from "@/layouts/test-two";
|
||||
|
||||
const routes = [
|
||||
{
|
||||
path: "/test1",
|
||||
name: "test1",
|
||||
components: {
|
||||
default: TestOne
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/test2",
|
||||
name: "test2",
|
||||
components: {
|
||||
default: TestTwo
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/",
|
||||
name: "root",
|
||||
|
|
|
|||
|
|
@ -7,16 +7,6 @@ const routingTable = function(store) {
|
|||
{
|
||||
fmgPageValue: fmgPageValues.VEHICLE_YEAR,
|
||||
maps: [
|
||||
{
|
||||
scenario: navigationScenarios.SELECTED_YEAR,
|
||||
destinationFmgPageValue: "test1",
|
||||
filter: store.getters.vehicle.year === 2010
|
||||
},
|
||||
{
|
||||
scenario: navigationScenarios.SELECTED_YEAR,
|
||||
destinationFmgPageValue: "test2",
|
||||
filter: store.getters.vehicle.year < 1954
|
||||
},
|
||||
{
|
||||
scenario: navigationScenarios.SELECTED_YEAR,
|
||||
destinationFmgPageValue: fmgPageValues.VEHICLE_MAKE,
|
||||
|
|
|
|||
Loading…
Reference in a new issue