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-external.js | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'test/test-markdown-external.js') diff --git a/test/test-markdown-external.js b/test/test-markdown-external.js index cab85c6..f924986 100644 --- a/test/test-markdown-external.js +++ b/test/test-markdown-external.js @@ -1,24 +1,20 @@ - - 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' ); }); - test( 'Horizontal separator', function() { - strictEqual( document.querySelectorAll( '.reveal .slides>section' ).length, 2, 'found two slides' ); + QUnit.test( 'Horizontal separator', function( assert ) { + assert.strictEqual( document.querySelectorAll( '.reveal .slides>section' ).length, 2, 'found two slides' ); }); - test( 'Language highlighter', function() { - strictEqual( document.querySelectorAll( '.hljs-keyword' ).length, 1, 'got rendered highlight tag.' ); - strictEqual( document.querySelector( '.hljs-keyword' ).innerHTML, 'var', 'the same keyword: var.' ); + QUnit.test( 'Language highlighter', function( assert ) { + assert.strictEqual( document.querySelectorAll( '.hljs-keyword' ).length, 1, 'got rendered highlight tag.' ); + assert.strictEqual( document.querySelector( '.hljs-keyword' ).innerHTML, 'var', 'the same keyword: var.' ); }); - } ); Reveal.initialize(); - -- cgit v1.2.3