blob: a2758ec1fa16805751f1143f34231034351ab87c (
plain) (
blame)
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();
|