diff options
author | Benjamin Tan | 2018-01-22 22:35:15 +0800 |
---|---|---|
committer | Benjamin Tan | 2018-01-22 22:38:32 +0800 |
commit | f9d076663746ab29410e9c141a7b9e927e4eb5df (patch) | |
tree | 222ac9d883a723ddc566e13413eed3ba6330c66d /test/test-markdown.js | |
parent | f0fa6fb226f918cac15e6c53bd68f2dc5c02d7c8 (diff) |
Update QUnit to 2.5.0 and `grunt-contrib-qunit` to 2.0.0.
Diffstat (limited to 'test/test-markdown.js')
-rw-r--r-- | test/test-markdown.js | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/test/test-markdown.js b/test/test-markdown.js index d2bbba8..5ea8bf2 100644 --- a/test/test-markdown.js +++ b/test/test-markdown.js @@ -1,15 +1,11 @@ - - Reveal.addEventListener( 'ready', function() { QUnit.module( 'Markdown' ); - test( 'Vertical separator', function() { - strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); + QUnit.test( 'Vertical separator', function( assert ) { + assert.strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); }); - } ); Reveal.initialize(); - |