From f9d076663746ab29410e9c141a7b9e927e4eb5df Mon Sep 17 00:00:00 2001 From: Benjamin Tan Date: Mon, 22 Jan 2018 22:35:15 +0800 Subject: Update QUnit to 2.5.0 and `grunt-contrib-qunit` to 2.0.0. --- test/test-markdown.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'test/test-markdown.js') diff --git a/test/test-markdown.js b/test/test-markdown.js index d2bbba8..5ea8bf2 100644 --- a/test/test-markdown.js +++ b/test/test-markdown.js @@ -1,15 +1,11 @@ - - Reveal.addEventListener( 'ready', function() { QUnit.module( 'Markdown' ); - test( 'Vertical separator', function() { - strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); + QUnit.test( 'Vertical separator', function( assert ) { + assert.strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); }); - } ); Reveal.initialize(); - -- cgit v1.2.3