diff --git a/docs/guides/testing-single-file-components-with-karma.md b/docs/guides/testing-single-file-components-with-karma.md index e41468784..9d09b3a7b 100644 --- a/docs/guides/testing-single-file-components-with-karma.md +++ b/docs/guides/testing-single-file-components-with-karma.md @@ -59,7 +59,7 @@ This file is used to configure Karma. We need to preprocess our files with webpack. to do that, we add webpack as a preprocessor, and include our webpack config. We can use the webpack config file in the base of the project without changing anything. -In our configuration, we run the tests in Chrome. To add extra browsers, see [the Browsers section in the Karma docs](http://karma-runner.github.io/2.0/config/browsers.html). +In our configuration, we run the tests in Chrome. To add extra browsers, see [the Browsers section in the Karma docs](http://karma-runner.github.io/3.0/config/browsers.html). ### Picking an Assertion Library diff --git a/docs/ja/guides/testing-single-file-components-with-karma.md b/docs/ja/guides/testing-single-file-components-with-karma.md index 1642a68b2..26ef15c6b 100644 --- a/docs/ja/guides/testing-single-file-components-with-karma.md +++ b/docs/ja/guides/testing-single-file-components-with-karma.md @@ -59,7 +59,7 @@ module.exports = function(config) { ファイルを Webpack で前処理する必要があります。そのために、 Webpack をプリプロセッサとして加えます。そして、 Webpack の設定を含めます。プロジェクトに元々あった Webpack の設定ファイルを変更なしで使用することができます。 -この設定では、 Chrome でテストを実行します。他のブラウザを加える方法は [Karma のドキュメントにあるブラウザセクション](http://karma-runner.github.io/2.0/config/browsers.html) を見てください。 +この設定では、 Chrome でテストを実行します。他のブラウザを加える方法は [Karma のドキュメントにあるブラウザセクション](http://karma-runner.github.io/3.0/config/browsers.html) を見てください。 ### アサーションライブラリを選ぶ diff --git a/docs/ru/guides/testing-single-file-components-with-karma.md b/docs/ru/guides/testing-single-file-components-with-karma.md index eba4094a9..0105006e2 100644 --- a/docs/ru/guides/testing-single-file-components-with-karma.md +++ b/docs/ru/guides/testing-single-file-components-with-karma.md @@ -59,7 +59,7 @@ module.exports = function(config) { Нам нужно предварительно обработать файлы с помощью webpack. Для этого мы добавляем webpack в качестве препроцессора и включаем нашу конфигурацию webpack. Мы можем использовать конфигурационный файл webpack в корне проекте, ничего не меняя. -В нашей конфигурации мы запускаем тесты в Chrome. Для добавления дополнительных браузеров смотрите [раздел Браузеры в документации Karma](http://karma-runner.github.io/2.0/config/browsers.html). +В нашей конфигурации мы запускаем тесты в Chrome. Для добавления дополнительных браузеров смотрите [раздел Браузеры в документации Karma](http://karma-runner.github.io/3.0/config/browsers.html). ### Выбор библиотеки утверждений diff --git a/docs/zh/guides/testing-single-file-components-with-karma.md b/docs/zh/guides/testing-single-file-components-with-karma.md index 5f4e918d4..d31efe954 100644 --- a/docs/zh/guides/testing-single-file-components-with-karma.md +++ b/docs/zh/guides/testing-single-file-components-with-karma.md @@ -59,7 +59,7 @@ module.exports = function(config) { 我们需要用 webpack 预处理文件。为此,我们将 webpack 添加为预处理器,并引入我们的 webpack 配置。我们可以在项目基础中使用该 webpack 配置文件而无需任何修改。 -在我们的配置中,我们在 Chrome 中运行测试。如果想添加其它浏览器,可查阅[Karma 文档的浏览器章节](http://karma-runner.github.io/2.0/config/browsers.html)。 +在我们的配置中,我们在 Chrome 中运行测试。如果想添加其它浏览器,可查阅[Karma 文档的浏览器章节](http://karma-runner.github.io/3.0/config/browsers.html)。 ### 选用一个断言库