From a3df73bff9a6fd2ba7c0268a2a08f9f4b3ee0e7d Mon Sep 17 00:00:00 2001 From: Shannon Archer Date: Tue, 2 Oct 2018 10:38:02 -0500 Subject: [PATCH] fixed spelling error in karma test docs --- docs/guides/testing-single-file-components-with-karma.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/testing-single-file-components-with-karma.md b/docs/guides/testing-single-file-components-with-karma.md index 147168dad..da16b37b6 100644 --- a/docs/guides/testing-single-file-components-with-karma.md +++ b/docs/guides/testing-single-file-components-with-karma.md @@ -138,7 +138,7 @@ Install `karma-coverage`, `babel-plugin-istanbul`, and `cross-env`: npm install --save-dev karma-coverage cross-env ``` -We're going to use `cross-env` to set a `BABEL_ENV` environment variable. This way we can use `babel-plugin-istanbul` when we're compiling for our tests—we don't want to include `babel-plugin-istnabul` when we compile our production code: +We're going to use `cross-env` to set a `BABEL_ENV` environment variable. This way we can use `babel-plugin-istanbul` when we're compiling for our tests—we don't want to include `babel-plugin-istanbul` when we compile our production code: ``` npm install --save-dev babel-plugin-istanbul