aboutsummaryrefslogtreecommitdiff
path: root/test/test-pdf.js
blob: 8ec34fd460c4fe1c27a96ee97d3a08b5f4653475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 });