From 1c7254c2c9321558dab38fc6ea4bca4c4fff7193 Mon Sep 17 00:00:00 2001 From: Ivan Sieder <35377072+ivansieder@users.noreply.github.com> Date: Fri, 12 Oct 2018 18:30:57 -0700 Subject: [PATCH] fix(docs): replaced `unit script` with `test script` --- docs/guides/testing-single-file-components-with-jest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/testing-single-file-components-with-jest.md b/docs/guides/testing-single-file-components-with-jest.md index 7a8248359..90eaa5f90 100644 --- a/docs/guides/testing-single-file-components-with-jest.md +++ b/docs/guides/testing-single-file-components-with-jest.md @@ -14,7 +14,7 @@ The first thing to do is install Jest and Vue Test Utils: $ npm install --save-dev jest @vue/test-utils ``` -Next we need to define a unit script in our `package.json`. +Next we need to define a test script in our `package.json`. ```json // package.json