diff options
author | Sean Parent | 2018-04-13 07:55:02 -0700 |
---|---|---|
committer | GitHub | 2018-04-13 07:55:02 -0700 |
commit | 97c1a0ecc1bf729dbe227ed0a3af0bfd3bc38613 (patch) | |
tree | 4fd0f338f0f58a46f213daaaa4744df4980bf45b /test/test-pdf.js | |
parent | 64b2a27455240e57c2cc1a90300391a3c3b91e28 (diff) | |
parent | 397feab8b4be5f8445ebb05808b507248188d4fe (diff) |
Merge branch 'dev' into master
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 }); - |