import Vue from 'vue'
import Router from 'vue-router'
import testsuite from '@/components/testsuite'
import testcase from '@/components/testcase'
import testcase_content from '@/components/testcase_content'
import environment from '@/components/environment'
Vue.use(Router)
const Result = {
template: "
"
}
const Report = {
template: ""
}
export default new Router({
routes: [
{
path: '/',
name: 'testsuite',
component: testsuite
},
{
path: '/testcase',
name: 'testcase',
component: testcase
},
{
path: '/content',
name: 'testcase_content',
component: testcase_content
},
{
path: '/result',
component: Result
},
{
path: '/report',
component: Report
},
{
path: '/environment',
component: environment
}
]
})