Skip to content

Commit e41ef64

Browse files
author
Jeff
committed
start implementing tests
1 parent ff805e7 commit e41ef64

File tree

4 files changed

+41
-18
lines changed

4 files changed

+41
-18
lines changed

package.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
"name": "@sagalbot/vueable",
33
"version": "0.0.3",
44
"main": "dist/@sagalbot/vueable.umd.js",
5+
"license": "MIT",
56
"scripts": {
67
"serve": "vue-cli-service serve ./dev/dev.js",
78
"build": "vue-cli-service build --target lib ./src/index.js",
89
"lint": "vue-cli-service lint",
9-
"test:unit": "vue-cli-service test:unit"
10+
"test": "vue-cli-service test:unit",
11+
"test:watch": "vue-cli-service test:unit --watch"
1012
},
1113
"dependencies": {},
1214
"peerDependencies": {
@@ -28,7 +30,7 @@
2830
"sass-loader": "^7.0.1",
2931
"vue": "^2.5.21",
3032
"vue-cli-plugin-webpack-bundle-analyzer": "^1.2.0",
31-
"vue-template-compiler": "^2.5.17"
33+
"vue-template-compiler": "^2.5.21"
3234
},
3335
"eslintConfig": {
3436
"root": true,
@@ -55,6 +57,12 @@
5557
"not ie < 11"
5658
],
5759
"jest": {
60+
"collectCoverage": true,
61+
"collectCoverageFrom": [
62+
"src/components/*.{js,jsx}",
63+
"!**/node_modules/**"
64+
],
65+
"coverageReporters": ["text"],
5866
"moduleFileExtensions": [
5967
"js",
6068
"jsx",

tests/unit/Toggle.spec.js

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import { shallowMount, mount, createLocalVue } from '@vue/test-utils';
2+
import Toggle from '../../src/components/Toggle.js';
3+
import Target from '../../src/components/Target.js';
4+
5+
describe('Toggle Component', () => {
6+
7+
it('can customize the root $el tag rendered', () => {
8+
const wrapper = shallowMount(Toggle, {
9+
propsData: {
10+
tag: 'nav',
11+
},
12+
});
13+
14+
expect(wrapper.html()).toBe('<nav></nav>');
15+
});
16+
17+
it('can find the child Target component when mounted', () => {
18+
const wrapper = shallowMount(Toggle, {
19+
slots: {
20+
default: [`<button>Trigger</button>`, Target],
21+
},
22+
});
23+
24+
expect(wrapper.vm.$data.target.$options.name).toEqual('target');
25+
});
26+
27+
});

tests/unit/example.spec.js

-12
This file was deleted.

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -9352,10 +9352,10 @@ vue-style-loader@^4.1.0:
93529352
hash-sum "^1.0.2"
93539353
loader-utils "^1.0.2"
93549354

9355-
vue-template-compiler@^2.5.17:
9356-
version "2.5.18"
9357-
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.5.18.tgz#8a346e477c5ada6efc890a2db4857090a2c54a05"
9358-
integrity sha512-WG2G+r5YxqkbTyJnbpkJuISTVI9MvYNGAZVKnmn8S4AoP0R0OufIKrHEV+GKwilLa+p3t/Plo8FzJXdhL9m4Sw==
9355+
vue-template-compiler@^2.5.21:
9356+
version "2.5.21"
9357+
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.5.21.tgz#a57ceb903177e8f643560a8d639a0f8db647054a"
9358+
integrity sha512-Vmk5Cv7UcmI99B9nXJEkaK262IQNnHp5rJYo+EwYpe2epTAXqcVyExhV6pk8jTkxQK2vRc8v8KmZBAwdmUZvvw==
93599359
dependencies:
93609360
de-indent "^1.0.2"
93619361
he "^1.1.0"

0 commit comments

Comments
 (0)