7
mirror of https://github.com/Hack-a-Day/Vectorscope.git synced 2024-12-23 06:09:31 +00:00
Vectorscope/docs/badge_talk_2023/reveal.js/test/test-pdf.js
2023-11-04 00:22:42 +01:00

16 lines
303 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
test( 'Reveal.isReady', function() {
strictEqual( Reveal.isReady(), true, 'returns true' );
});
} );
Reveal.initialize({ pdf: true });