diff options
author | Yves Delley | 2014-09-12 22:49:13 +0200 |
---|---|---|
committer | Yves Delley | 2014-09-12 22:49:13 +0200 |
commit | 9bc5b81292619ef06e9a582a7607b7e0601d7c17 (patch) | |
tree | cc4220eacd9e47cb42cdd237a4fa27038103294c /test/test-pdf.js | |
parent | 2bc36f2dfe04746d5a10c48531b38c64415d43aa (diff) | |
parent | 80c375fae85d5b1edc2656641e03942739daa28b (diff) |
merged dev branch
Diffstat (limited to 'test/test-pdf.js')
-rw-r--r-- | test/test-pdf.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/test-pdf.js b/test/test-pdf.js new file mode 100644 index 0000000..8ec34fd --- /dev/null +++ b/test/test-pdf.js @@ -0,0 +1,15 @@ + +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' ); + }); + + +} ); + +Reveal.initialize({ pdf: true }); + |