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-pdf.js | |
parent | f0fa6fb226f918cac15e6c53bd68f2dc5c02d7c8 (diff) |
Update QUnit to 2.5.0 and `grunt-contrib-qunit` to 2.0.0.
Diffstat (limited to 'test/test-pdf.js')
-rw-r--r-- | test/test-pdf.js | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/test-pdf.js b/test/test-pdf.js index 8ec34fd..1ebf997 100644 --- a/test/test-pdf.js +++ b/test/test-pdf.js @@ -1,15 +1,12 @@ - Reveal.addEventListener( 'ready', function() { // Only one test for now, we're mainly ensuring that there // are no execution errors when running PDF mode - test( 'Reveal.isReady', function() { - strictEqual( Reveal.isReady(), true, 'returns true' ); + QUnit.test( 'Reveal.isReady', function( assert ) { + assert.strictEqual( Reveal.isReady(), true, 'returns true' ); }); - } ); Reveal.initialize({ pdf: true }); - |