From 177f6d9429b1e4cfa4f0abb43223f508211866e8 Mon Sep 17 00:00:00 2001 From: "Bernhard E. Reiter" Date: Thu, 10 Nov 2016 17:02:46 +0100 Subject: [PATCH 1/2] Update link to karma * Using tls now * Pointig to the top level, because v1.0 is released. --- docs/commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/commands.md b/docs/commands.md index 40b9209d6b..de7a5becef 100644 --- a/docs/commands.md +++ b/docs/commands.md @@ -24,7 +24,7 @@ All build commands are executed via [NPM Scripts](https://docs.npmjs.com/misc/sc ### `npm run unit` -> Run unit tests in PhantomJS with [Karma](http://karma-runner.github.io/0.13/index.html). See [Unit Testing](unit.md) for more details. +> Run unit tests in PhantomJS with [Karma](https://karma-runner.github.io/). See [Unit Testing](unit.md) for more details. - Supports ES2015 in test files. - Supports all webpack loaders. From caaa9ea23706d1108c5c17c986eb830137adf5ae Mon Sep 17 00:00:00 2001 From: Bernhard Reiter Date: Thu, 10 Nov 2016 17:09:01 +0100 Subject: [PATCH 2/2] Updates link to karma website. --- docs/unit.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/unit.md b/docs/unit.md index 6162681d45..510dadbedf 100644 --- a/docs/unit.md +++ b/docs/unit.md @@ -2,7 +2,7 @@ An overview of the tools used by this boilerplate for unit testing: -- [Karma](http://karma-runner.github.io/0.13/index.html): the test runner that launches browsers, runs the tests and reports the results to us. +- [Karma](https://karma-runner.github.io/): the test runner that launches browsers, runs the tests and reports the results to us. - [karma-webpack](https://github.com/webpack/karma-webpack): the plugin for Karma that bundles our tests using Webpack. - [Mocha](https://mochajs.org/): the test framework that we write test specs with. - [Chai](http://chaijs.com/): test assertion library that provides better assertion syntax. @@ -22,11 +22,11 @@ And the files: - `karma.conf.js` - This is the Karma configuration file. See [Karma docs](http://karma-runner.github.io/0.13/index.html) for more details. + This is the Karma configuration file. See [Karma docs](https://karma-runner.github.io/) for more details. ## Running Tests in More Browsers -You can run the tests in multiple real browsers by installing more [karma launchers](http://karma-runner.github.io/0.13/config/browsers.html) and adjusting the `browsers` field in `test/unit/karma.conf.js`. +You can run the tests in multiple real browsers by installing more [karma launchers](https://karma-runner.github.io/1.0/config/browsers.html) and adjusting the `browsers` field in `test/unit/karma.conf.js`. ## Mocking Dependencies