Skip to content

Commit

Permalink
fix(tests): remove test cases
Browse files Browse the repository at this point in the history
Remove other test cases to decrease the total time for running them.
  • Loading branch information
dnlup committed Jul 20, 2019
1 parent 417e744 commit 53cf091
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/avaPlugin.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ for (const avaConfigLocation of ['ava.config.js', 'package.json']) {
// uses export default {} in its HelloWorld.vue compoenent.

// Babel setup
test(`Base Plugin + Babel (${avaConfigLocation})`, plugin, {
test.skip(`Base Plugin + Babel (${avaConfigLocation})`, plugin, {
plugins: {
'@vue/cli-plugin-babel': {}
},
Expand Down Expand Up @@ -113,7 +113,7 @@ for (const avaConfigLocation of ['ava.config.js', 'package.json']) {
'--styles stylus'
]
})
test(`Base Plugin + Babel + Vuetify (${avaConfigLocation})`, plugin, {
test.skip(`Base Plugin + Babel + Vuetify (${avaConfigLocation})`, plugin, {
plugins: {
'@vue/cli-plugin-babel': {},
'vue-cli-plugin-vuetify': vuetifyPluginOptions
Expand Down Expand Up @@ -159,7 +159,7 @@ for (const avaConfigLocation of ['ava.config.js', 'package.json']) {
})

// TypeScript setup
test(`Base Plugin + TypeScript (${avaConfigLocation})`, plugin, {
test.skip(`Base Plugin + TypeScript (${avaConfigLocation})`, plugin, {
plugins: {
'@vue/cli-plugin-typescript': {}
},
Expand Down Expand Up @@ -199,7 +199,7 @@ for (const avaConfigLocation of ['ava.config.js', 'package.json']) {
'--styles stylus'
]
})
test(`Base Plugin + TypeScript + Vuetify (${avaConfigLocation})`, plugin, {
test.skip(`Base Plugin + TypeScript + Vuetify (${avaConfigLocation})`, plugin, {
plugins: {
'@vue/cli-plugin-typescript': {
useTsWithBabel: false
Expand All @@ -222,7 +222,7 @@ for (const avaConfigLocation of ['ava.config.js', 'package.json']) {
'--styles css'
]
})
test(`Base Plugin + TypeScript + stylus + Vuetify (${avaConfigLocation})`, plugin, {
test.skip(`Base Plugin + TypeScript + stylus + Vuetify (${avaConfigLocation})`, plugin, {
plugins: {
'@vue/cli-plugin-typescript': {},
'vue-cli-plugin-vuetify': vuetifyPluginOptions
Expand All @@ -233,7 +233,7 @@ for (const avaConfigLocation of ['ava.config.js', 'package.json']) {
'--styles stylus'
]
})
test.skip(`Base Plugin + TypeScript + css + stylus + Vuetify (${avaConfigLocation})`, plugin, {
test(`Base Plugin + TypeScript + css + stylus + Vuetify (${avaConfigLocation})`, plugin, {
plugins: {
'@vue/cli-plugin-typescript': {
useTsWithBabel: false
Expand Down

0 comments on commit 53cf091

Please sign in to comment.