Skip to content

Commit 9b35b06

Browse files
authored
Merge branch 'working' into wrapper
2 parents 566e115 + 6af1907 commit 9b35b06

File tree

690 files changed

+33489
-32300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

690 files changed

+33489
-32300
lines changed

.babelrc

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
{
22
"presets": ["env", "stage-2", "flow-vue"],
3-
"comments": false,
4-
"env": {
5-
"test": {
6-
"plugins": ["istanbul"]
7-
}
8-
}
3+
"plugins": ["transform-decorators-legacy"],
4+
"comments": false
95
}

.circleci/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:6.13.0-stretch-browsers
6+
working_directory: ~/repo
7+
8+
steps:
9+
- checkout
10+
- run: yarn --version
11+
- run: yarn
12+
- run: yarn bootstrap
13+
- run: yarn build:test
14+
- run: yarn test
15+
- run: yarn test:compat
16+
17+
- save_cache:
18+
paths:
19+
- node_modules
20+
key: v1-dependencies-{{ checksum "yarn.lock" }}

.eslintrc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,9 @@
1111
"extends": [
1212
"plugin:vue-libs/recommended",
1313
"plugin:flowtype/recommended"
14-
]
14+
],
15+
rules: {
16+
"no-debugger": 2,
17+
"no-proto": 0
18+
}
1519
}

.flowconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
flow
77

88
[options]
9-
suppress_comment= \\(.\\|\n\\)*\\$FlowIgnore
9+
suppress_comment= \\(.\\|\n\\)*\\$FlowIgnore

.github/ISSUE_TEMPLATE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!--
2+
IMPORTANT: Please use the following link to create a new issue:
3+
4+
https://new-issue.vuejs.org/?repo=vuejs/vue-test-utils
5+
6+
If your issue was not created using the app above, it will be closed immediately.
7+
-->

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ node_modules/
1212
*.log
1313
reports
1414
coverage
15+
.nyc_output/
1516

1617
# Build
1718
dist
@@ -21,4 +22,7 @@ _book
2122
.tmp
2223
tmp*
2324

24-
yarn.lock
25+
# Vim
26+
*.sw[po]
27+
28+
package-lock.json

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2017 vuejs
3+
Copyright (c) 2017-present vuejs
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21-
THE SOFTWARE.
21+
THE SOFTWARE.

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,30 @@
1+
<<<<<<< HEAD
12
# Pour traduire la documentation de vue-test-utils
23

34
### Workflow de travail
45

56
Cette branche de travail `working` est volontairement mise en avant et doit uniquement être mise à jour dans le sens :
7+
=======
8+
# Vue Test Utils [![Build Status](https://circleci.com/gh/vuejs/vue-test-utils/tree/dev.png?style=shield)](https://circleci.com/gh/vuejs/vue-test-utils)
9+
10+
## Currently in beta
11+
To use Vue Test Utils beta:
12+
```
13+
// npm
14+
npm install --save-dev @vue/test-utils
15+
16+
// yarn
17+
yarn add --dev @vue/test-utils
18+
```
19+
20+
## Intro
21+
22+
Vue Test Utils is the official test library for [Vue.js](http://vuejs.org). It provides methods for unit testing Vue components.
23+
24+
## Documentation
25+
26+
Refer to the [documentation](https://vue-test-utils.vuejs.org/)
27+
>>>>>>> upstream/dev
628
729
`vuejs/vue-test-utils:dev` --> `vuejs-fr/vue-test-utils:working`.
830

@@ -15,11 +37,19 @@ git merge upstream/dev
1537

1638
d'obtenir des conflits **sur les pages déjà traduites** et ainsi maintenir la documentation à jour en fonction des modifications à travers **les documents déjà traduits**.
1739

40+
<<<<<<< HEAD
1841
### Traduction
42+
=======
43+
Please make sure to read the [Contributing Guide](https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md) before making a pull request.
44+
>>>>>>> upstream/dev
1945
2046
Pour savoir ce qui est [en cours de traduction](https://github.com/vuejs-fr/vue-test-utils/issues/1) ou [comment traduire un fichier](https://github.com/vuejs-fr/vue-test-utils/issues/2), référez vous aux issues correspondantes.
2147

48+
<<<<<<< HEAD
2249
### Reverssement
50+
=======
51+
Changes for each release are documented in the [release notes](https://github.com/vuejs/vue-test-utils/releases).
52+
>>>>>>> upstream/dev
2353
2454
Quand un fichier traduit est validé par pull request, on le met à jour dans le dossier `fr` de `vuejs-fr/vue-test-utils:dev` puis on propose une pull request au site principal :
2555

build/build.js

Lines changed: 0 additions & 115 deletions
This file was deleted.

build/git-hooks/commit-msg

Lines changed: 0 additions & 14 deletions
This file was deleted.

build/git-hooks/pre-commit

Lines changed: 0 additions & 4 deletions
This file was deleted.

build/install-hooks.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

build/release.sh

Lines changed: 0 additions & 34 deletions
This file was deleted.

build/webpack.test.config.js

Lines changed: 0 additions & 34 deletions
This file was deleted.

circle.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)