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