diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-11-26 15:51:03 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-11-26 15:51:03 +0100 |
commit | 2b53e3e2ef985a01fecede6a5854428391d83726 (patch) | |
tree | 1ca7dcc4edbabb55068a315e57c24b58b00fa920 /static/presentations/2021-11-13/garage/test/test-dependencies-async.html | |
parent | 888003d72fe33b0a8e8962040d1f759b58f18e6b (diff) | |
download | rfid-2b53e3e2ef985a01fecede6a5854428391d83726.tar.gz rfid-2b53e3e2ef985a01fecede6a5854428391d83726.zip |
Ajout présentation et programme du 11/12
Diffstat (limited to 'static/presentations/2021-11-13/garage/test/test-dependencies-async.html')
-rw-r--r-- | static/presentations/2021-11-13/garage/test/test-dependencies-async.html | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/static/presentations/2021-11-13/garage/test/test-dependencies-async.html b/static/presentations/2021-11-13/garage/test/test-dependencies-async.html new file mode 100644 index 0000000..14a9b69 --- /dev/null +++ b/static/presentations/2021-11-13/garage/test/test-dependencies-async.html @@ -0,0 +1,77 @@ +<!doctype html> +<html lang="en"> + + <head> + <meta charset="utf-8"> + + <title>reveal.js - Test Async Dependencies</title> + + <link rel="stylesheet" href="../dist/reveal.css"> + <link rel="stylesheet" href="../node_modules/qunit/qunit/qunit.css"> + <script src="../node_modules/qunit/qunit/qunit.js"></script> + </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="../dist/reveal.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> |