Skip to content

Commit 33c0374

Browse files
committed
First and most impressive commit of all times.
0 parents  commit 33c0374

9 files changed

+7590
-0
lines changed

.babelrc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"presets": [
3+
["env", { "modules": false }],
4+
"stage-3"
5+
],
6+
"env": {
7+
"test": {
8+
"presets": [
9+
["env", { "targets": { "node": "current" }}]
10+
]
11+
}
12+
}
13+
}

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
8+
[*{ts,js,vue,json,rc}]
9+
indent_style = space
10+
indent_size = 2

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# .gitignore
2+
node_modules
3+

README.adoc

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
= Vue/Vuetify Unit Tests With Jest and Vue-Test-Utils
2+
3+
An example on how to configure Vue/Vuetify to be unit-teste with `jest` and `vue-test-utils`.
4+
5+
Read more about it http://fernandobasso.github.io/[on my blog^].
6+
7+
== Running
8+
9+
Clone de project and `cd` into the directory. Then
10+
11+
// vue-vuetify-unit-test-jest-vue-test-utils
12+
13+
----
14+
npm install
15+
npm run unit
16+
----
17+

0 commit comments

Comments
 (0)