diff options
author | Hakim El Hattab | 2018-10-04 15:43:58 +0200 |
---|---|---|
committer | Hakim El Hattab | 2018-10-04 15:43:58 +0200 |
commit | fb089e70838ec9a673577c0274fc202ccfcda7c2 (patch) | |
tree | 365dacb488f0dca3c35d2392d48cc3a2003d6105 /test/test-async-dependencies.html | |
parent | 196d2a39712760b7671fa2feb54e1883a97796e5 (diff) |
fix build error
Diffstat (limited to 'test/test-async-dependencies.html')
-rw-r--r-- | test/test-async-dependencies.html | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/test/test-async-dependencies.html b/test/test-async-dependencies.html deleted file mode 100644 index d08db28..0000000 --- a/test/test-async-dependencies.html +++ /dev/null @@ -1,74 +0,0 @@ -<!doctype html> -<html lang="en"> - - <head> - <meta charset="utf-8"> - - <title>reveal.js - Test Async Dependencies</title> - - <link rel="stylesheet" href="../css/reveal.css"> - <link rel="stylesheet" href="qunit-2.5.0.css"> - </head> - - <body style="overflow: auto;"> - - <div id="qunit"></div> - <div id="qunit-fixture"></div> - - <div class="reveal" style="display: none;"> - - <div class="slides"> - - <section>Slide content</section> - - </div> - - </div> - - <script src="../js/reveal.js"></script> - <script src="qunit-2.5.0.js"></script> - - <script> - window.externalScriptSequence = ''; - - QUnit.module( 'Async Dependencies' ); - - var scriptCount = 0; - - QUnit.test( 'Async scripts are loaded', function( assert ) { - assert.expect( 5 ); - var done = assert.async( 5 ); - - function callback( event ) { - if( window.externalScriptSequence.length === 1 ) { - assert.ok( window.externalScriptSequence === 'A', 'first callback was sync script' ); - } - else { - assert.ok( true, 'async script loaded' ); - } - - if( window.externalScriptSequence.length === 4 ) { - assert.ok( window.externalScriptSequence.indexOf( 'A' ) !== -1 && - window.externalScriptSequence.indexOf( 'B' ) !== -1 && - window.externalScriptSequence.indexOf( 'C' ) !== -1 && - window.externalScriptSequence.indexOf( 'D' ) !== -1, 'four unique scripts were loaded' ); - } - - done(); - scriptCount ++; - } - - Reveal.initialize({ - dependencies: [ - { src: 'assets/external-script-a.js', async: false, callback: callback }, - { src: 'assets/external-script-b.js', async: true, callback: callback }, - { src: 'assets/external-script-c.js', async: true, callback: callback }, - { src: 'assets/external-script-d.js', async: true, callback: callback } - ] - }); - }); - - </script> - - </body> -</html> |