teardown-2019/test/test-pdf.js
Sean Cross 4beca5ea3f initial commit
Signed-off-by: Sean Cross <sean@xobs.io>
2019-06-16 08:39:06 -07:00

13 lines
321 B
JavaScript

Reveal.addEventListener( 'ready', function() {
// Only one test for now, we're mainly ensuring that there
// are no execution errors when running PDF mode
QUnit.test( 'Reveal.isReady', function( assert ) {
assert.strictEqual( Reveal.isReady(), true, 'returns true' );
});
} );
Reveal.initialize({ pdf: true });