diff --git a/docs/README.md b/docs/README.md index 155e4f35b..63d06fbd1 100644 --- a/docs/README.md +++ b/docs/README.md @@ -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) diff --git a/docs/guides/choosing-a-test-runner.md b/docs/guides/choosing-a-test-runner.md index a2e1203b7..7d5568985 100644 --- a/docs/guides/choosing-a-test-runner.md +++ b/docs/guides/choosing-a-test-runner.md @@ -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 diff --git a/docs/guides/testing-single-file-components-with-jest.md b/docs/guides/testing-single-file-components-with-jest.md index 5ca82986d..650e5f8ed 100644 --- a/docs/guides/testing-single-file-components-with-jest.md +++ b/docs/guides/testing-single-file-components-with-jest.md @@ -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: diff --git a/docs/guides/using-with-typescript.md b/docs/guides/using-with-typescript.md index b013ac4a5..63b2872f3 100644 --- a/docs/guides/using-with-typescript.md +++ b/docs/guides/using-with-typescript.md @@ -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: