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

	QUnit.module( 'Markdown' );

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


} );

Reveal.initialize();