Skip to content

Commit 0d13b37

Browse files
38elementseddyerburgh
authored andcommitted
docs: fix docs/README.md (#944)
1 parent 0d1ddd1 commit 0d13b37

4 files changed

+7
-7
lines changed

Diff for: docs/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Vue Test Utils is the official unit testing utility library for Vue.js.
77
* [Common Tips](guides/common-tips.md)
88
* [Mouse, Key and other DOM Events](guides/dom-events.md)
99
* [Choosing a test runner](guides/choosing-a-test-runner.md)
10-
* [Testing SFCs with Jest](guides/testing-single-file-components-with-jest.md)
11-
* [Testing SFCs with Mocha + webpack](guides/testing-single-file-components-with-mocha-webpack.md)
12-
* [Testing SFCs with Karma](guides/testing-single-file-components-with-karma.md)
10+
* [Testing Single-File Components with Jest](guides/testing-single-file-components-with-jest.md)
11+
* [Testing Single-File Components with Mocha + webpack](guides/testing-single-file-components-with-mocha-webpack.md)
12+
* [Testing Single-File Components with Karma](guides/testing-single-file-components-with-karma.md)
1313
* [Testing Asynchronous Behavior](guides/testing-async-components.md)
1414
* [Using with TypeScript](guides/using-with-typescript.md)
1515
* [Using with Vue Router](guides/using-with-vue-router.md)

Diff for: docs/guides/choosing-a-test-runner.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ The `vue-jest` preprocessor supports basic SFC functionalities, but currently do
3333

3434
Read the following guides for different setups:
3535

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

3939
### Resources
4040

Diff for: docs/guides/testing-single-file-components-with-jest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Next we need to define a unit script in our `package.json`.
2525
}
2626
```
2727

28-
### Processing SFCs in Jest
28+
### Processing Single-File Components in Jest
2929

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

Diff for: docs/guides/using-with-typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Next define a `test:unit` script in `package.json`.
5252
}
5353
```
5454

55-
### Processing SFCs in Jest
55+
### Processing Single-File Components in Jest
5656

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

0 commit comments

Comments
 (0)