aboutsummaryrefslogtreecommitdiff
path: root/test/test-markdown.js
blob: 5ea8bf2cc8cc431c2cfb20573140c1959b076e29 (plain)
1
2
3
4
5
6
7
8
9
10
11
Reveal.addEventListener( 'ready', function() {

	QUnit.module( 'Markdown' );

	QUnit.test( 'Vertical separator', function( assert ) {
		assert.strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );
	});

} );

Reveal.initialize();