Skip to content
Snippets Groups Projects
Commit 4823b267 authored by Hakim El Hattab's avatar Hakim El Hattab
Browse files

better test for fragment indices

parent cbef64b8
Branches
No related tags found
No related merge requests found
......@@ -313,6 +313,13 @@ Reveal.addEventListener( 'ready', function() {
Reveal.slide( 3, 0, 0 );
equal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 2, 'both fragments of same index are shown' );
// This slide has three fragments, first one is index 0, second and third have index 1
Reveal.slide( 2, 2, 0 );
equal( Reveal.getIndices().f, 0, 'returns correct index for first fragment' );
Reveal.slide( 2, 2, 1 );
equal( Reveal.getIndices().f, 1, 'returns correct index for two fragments with same index' );
});
test( 'Index generation', function() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment