Skip to content

Commit

Permalink
fix markdown test
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimel committed Apr 12, 2015
1 parent 4e3b91a commit 7f55e07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/test-markdown-element-attributes.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
Paragraph 2
<!-- {_class="fragment grow"} -->

- list item 1 <!-- {_class="fragment"} -->
- list item 2 <!-- {_class="fragment"} -->
- list item 3 <!-- {_class="fragment"} -->
- list item 1 <!-- {_class="fragment grow"} -->
- list item 2 <!-- {_class="fragment grow"} -->
- list item 3 <!-- {_class="fragment grow"} -->


---
Expand Down
2 changes: 1 addition & 1 deletion test/test-markdown-element-attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Reveal.addEventListener( 'ready', function() {
});

test( 'Attributes on element list items in vertical slides', function() {
strictEqual( document.querySelectorAll( '.reveal .slides section>section li.fragment.roll-in' ).length, 3, 'found a vertical slide with three list items with class fragment.roll-in' );
strictEqual( document.querySelectorAll( '.reveal .slides section>section li.fragment.grow' ).length, 3, 'found a vertical slide with three list items with class fragment.grow' );
});

test( 'Attributes on element paragraphs in horizontal slides', function() {
Expand Down

0 comments on commit 7f55e07

Please sign in to comment.