Skip to content

Commit

Permalink
Fix errors in code example
Browse files Browse the repository at this point in the history
Fixes #381.
  • Loading branch information
csnover committed Apr 17, 2015
1 parent ea33540 commit d217a2d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.html
Expand Up @@ -1250,10 +1250,6 @@ <h3 data-id="test-lifecycle">The test lifecycle</h3>
console.log('outer teardown');
},

'test C': function () {
console.log('outer test C');
},

'inner suite': {
setup: function () {
console.log('inner setup');
Expand All @@ -1269,16 +1265,20 @@ <h3 data-id="test-lifecycle">The test lifecycle</h3>
},

'test A': function () {
console.log('outer test A');
console.log('inner test A');
},
'test B': function () {
console.log('outer test B');
console.log('inner test B');
}
},

'test C': function () {
console.log('outer test C');
}
});
});</code></pre>

<p>…the resulting console output would be:</p>
<p>…the resulting console output would be in this order:</p>

<pre><samp>outer setup
inner setup
Expand Down

0 comments on commit d217a2d

Please sign in to comment.