blob: 8ec34fd460c4fe1c27a96ee97d3a08b5f4653475 [file] [log] [blame]
JJ Allaireefa6ad42016-01-30 13:12:05 -05001
2Reveal.addEventListener( 'ready', function() {
3
4 // Only one test for now, we're mainly ensuring that there
5 // are no execution errors when running PDF mode
6
7 test( 'Reveal.isReady', function() {
8 strictEqual( Reveal.isReady(), true, 'returns true' );
9 });
10
11
12} );
13
14Reveal.initialize({ pdf: true });
15