Skip to content

Commit

Permalink
fix coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
yariksav committed Jan 21, 2020
1 parent 9229f40 commit 76182a9
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 74 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -4,4 +4,5 @@ dist
docs/.vuepress/dist
build/related
*.tgz
package-lock.json
package-lock.json
.trash
8 changes: 6 additions & 2 deletions package.json
Expand Up @@ -14,7 +14,7 @@
"lint:fix": "npm run lint -- --fix",
"prepublish": "npm run build",
"test": "jest --env=jsdom",
"coverage": "jest --env=jsdom --coverage --collectCoverageFrom=src/**/*.js --coverageReporters=text-lcov | coveralls"
"coverage": "jest --env=jsdom --coverage --coverageReporters=text-lcov | coveralls"
},
"main": "dist/vuetify-dialog.umd.js",
"module": "dist/vuetify-dialog.esm.js",
Expand Down Expand Up @@ -87,7 +87,11 @@
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"transformIgnorePatterns": []
"transformIgnorePatterns": [],
"collectCoverageFrom": [
"src/**/*.{js,jsx,vue}",
"!/node_modules/"
]
},
"peerDependencies": {
"vue": "*",
Expand Down
67 changes: 0 additions & 67 deletions src/components/Message.vue

This file was deleted.

2 changes: 1 addition & 1 deletion test/notification.spec.js
@@ -1,5 +1,5 @@
import Vue from 'vue'
import Vuetify from 'vuetify'
import Vuetify from 'vuetify/lib'
import { sleep } from './utils'
import VuetifyDialogPlugin from '../src'
Vue.use(Vuetify)
Expand Down
2 changes: 1 addition & 1 deletion test/package.spec.js
@@ -1,5 +1,5 @@
import Vue from 'vue'
import Vuetify from 'vuetify'
import Vuetify from 'vuetify/lib'
import VuetifyDialogPlugin from '../src'
import { sleep, addElemWithDataAppToBody, disableTransitions } from './utils'
Vue.use(Vuetify)
Expand Down
4 changes: 2 additions & 2 deletions test/prompt.spec.js
@@ -1,8 +1,8 @@
import Vue from 'vue'
import Vuetify from 'vuetify/lib'
import DialogManager from 'vuedl/src/manager'
import Prompt from '../src/components/Prompt'
import DialogLayout from '../src/components/DialogLayout'
import Vue from 'vue'
import Vuetify from 'vuetify'
import { sleep, addElemWithDataAppToBody, disableTransitions } from './utils'
Vue.use(Vuetify)
const vuetify = new Vuetify()
Expand Down

0 comments on commit 76182a9

Please sign in to comment.