1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-08 23:57:13 +02:00

add hasPlugin and getPlugin API methods and tests

This commit is contained in:
Hakim El Hattab
2019-04-01 11:07:11 +02:00
parent d6f0f41f77
commit df25fbebba
2 changed files with 40 additions and 2 deletions

View File

@@ -57,6 +57,8 @@
initCounter['PluginD'] += 1;
} };
var PluginE = {};
Reveal.registerPlugin( 'PluginA', PluginA );
Reveal.registerPlugin( 'PluginB', PluginB );
Reveal.registerPlugin( 'PluginC', PluginC );
@@ -71,7 +73,7 @@
assert.strictEqual( initCounter['PluginB'], 1, 'prevents duplicate registration' );
});
QUnit.test( 'Can initialie asynchronously', function( assert ) {
QUnit.test( 'Can initialize asynchronously', function( assert ) {
assert.expect( 3 );
var done = assert.async( 2 );
@@ -86,6 +88,17 @@
done();
});
} );
QUnit.test( 'Can check if plugin is registered', function( assert ) {
assert.strictEqual( Reveal.hasPlugin( 'PluginA' ), true );
assert.strictEqual( Reveal.hasPlugin( 'PluginE' ), false );
Reveal.registerPlugin( 'PluginE', PluginE );
assert.strictEqual( Reveal.hasPlugin( 'PluginE' ), true );
} );
QUnit.test( 'Can retrieve plugin instance', function( assert ) {
assert.strictEqual( Reveal.getPlugin( 'PluginB' ), PluginB );
} );
</script>
</body>