summaryrefslogtreecommitdiffhomepage
path: root/test/test-dependencies-async.html
diff options
context:
space:
mode:
authorMarvin Borner2020-03-13 22:20:40 +0100
committerMarvin Borner2020-03-13 22:20:40 +0100
commita840a022669adcc88fba3339378a0328d7b3032e (patch)
tree4a88c90bd2d55674d80cf16792262c9ce8a696d8 /test/test-dependencies-async.html
parent00b0ace3863952ce95df4430d203686fd27bfc20 (diff)
Well, this is the actual first commit ig
Diffstat (limited to 'test/test-dependencies-async.html')
-rw-r--r--test/test-dependencies-async.html78
1 files changed, 0 insertions, 78 deletions
diff --git a/test/test-dependencies-async.html b/test/test-dependencies-async.html
deleted file mode 100644
index b36c31b..0000000
--- a/test/test-dependencies-async.html
+++ /dev/null
@@ -1,78 +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>
- var externalScriptSequence = '';
- var scriptCount = 0;
-
- QUnit.config.autostart = false;
- QUnit.module( 'Async Dependencies' );
-
- QUnit.test( 'Async scripts are loaded', function( assert ) {
- assert.expect( 5 );
- var done = assert.async( 5 );
-
- function callback( event ) {
- if( externalScriptSequence.length === 1 ) {
- assert.ok( externalScriptSequence === 'A', 'first callback was sync script' );
- done();
- }
- else {
- assert.ok( true, 'async script loaded' );
- done();
- }
-
- if( externalScriptSequence.length === 4 ) {
- assert.ok( externalScriptSequence.indexOf( 'A' ) !== -1 &&
- externalScriptSequence.indexOf( 'B' ) !== -1 &&
- externalScriptSequence.indexOf( 'C' ) !== -1 &&
- 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 }
- ]
- });
- });
-
- QUnit.start();
-
- </script>
-
- </body>
-</html>