Skip to content

Commit

Permalink
Merge pull request vuejs-templates#358 from bernhardreiter/patch-1
Browse files Browse the repository at this point in the history
Updates link to karma website.
  • Loading branch information
LinusBorg authored Dec 13, 2016
2 parents 105e23c + caaa9ea commit 98cde1a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions docs/unit.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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

Expand Down

0 comments on commit 98cde1a

Please sign in to comment.