Skip to content

Commit

Permalink
docs(docs/index.md): Minor changes to documentation [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
plroebuck committed Dec 23, 2018
1 parent 0688e93 commit 5baeb00
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ To tweak what's considered "slow", you can use the `slow()` method:

```js
describe('something slow', function() {
this.slow(10000);
this.slow(300000); // five minutes

it('should take long enough for me to go make a sandwich', function() {
// ...
Expand Down Expand Up @@ -1488,7 +1488,7 @@ A typical setup might look something like the following, where we call `mocha.se
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link href="https://unpkg.com/mocha/mocha.css" rel="stylesheet" />
<link rel="stylesheet" href="https://unpkg.com/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
Expand Down Expand Up @@ -1568,11 +1568,11 @@ notification should appear informing you whether your tests passed or failed.

In order to use desktop notifications with the command-line interface (CLI),
you **must** first install some platform-specific prerequisite software.
Instructions for doing so can be found [here](https://github.com/mochajs/mocha/wiki/Growl-Notifications).
Instructions for doing so can be found [here][Growl-install].

Enable Mocha's desktop notifications as follows:

```bash
```sh
$ mocha --growl
```

Expand Down

0 comments on commit 5baeb00

Please sign in to comment.