Skip to content

docs: fix docs/README.md #944

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Vue Test Utils is the official unit testing utility library for Vue.js.
* [Common Tips](guides/common-tips.md)
* [Mouse, Key and other DOM Events](guides/dom-events.md)
* [Choosing a test runner](guides/choosing-a-test-runner.md)
* [Testing SFCs with Jest](guides/testing-single-file-components-with-jest.md)
* [Testing SFCs with Mocha + webpack](guides/testing-single-file-components-with-mocha-webpack.md)
* [Testing SFCs with Karma](guides/testing-single-file-components-with-karma.md)
* [Testing Single-File Components with Jest](guides/testing-single-file-components-with-jest.md)
* [Testing Single-File Components with Mocha + webpack](guides/testing-single-file-components-with-mocha-webpack.md)
* [Testing Single-File Components with Karma](guides/testing-single-file-components-with-karma.md)
* [Testing Asynchronous Behavior](guides/testing-async-components.md)
* [Using with TypeScript](guides/using-with-typescript.md)
* [Using with Vue Router](guides/using-with-vue-router.md)
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/choosing-a-test-runner.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ The `vue-jest` preprocessor supports basic SFC functionalities, but currently do

Read the following guides for different setups:

- [Testing SFCs with Jest](./testing-single-file-components-with-jest.md)
- [Testing SFCs with Mocha + webpack](./testing-single-file-components-with-mocha-webpack.md)
- [Testing Single-File Components with Jest](./testing-single-file-components-with-jest.md)
- [Testing Single-File Components with Mocha + webpack](./testing-single-file-components-with-mocha-webpack.md)

### Resources

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/testing-single-file-components-with-jest.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Next we need to define a unit script in our `package.json`.
}
```

### Processing SFCs in Jest
### Processing Single-File Components in Jest

To teach Jest how to process `*.vue` files, we will need to install and configure the `vue-jest` preprocessor:

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/using-with-typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Next define a `test:unit` script in `package.json`.
}
```

### Processing SFCs in Jest
### Processing Single-File Components in Jest

To teach Jest how to process `*.vue` files, we need to install and configure the `vue-jest` preprocessor:

Expand Down