aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2015-04-12 18:22:33 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2015-04-12 18:22:39 +0200
commit7f55e07f85f69443e23fc3d46c55f44a75e29afe (patch)
treeb5e7f89ecde9b247b203121d46d6cae728e82284 /test
parent4e3b91ae03da5a82be4e221dae5c3aa45401359d (diff)
downloadfosdem-2018-presentation-7f55e07f85f69443e23fc3d46c55f44a75e29afe.tar
fosdem-2018-presentation-7f55e07f85f69443e23fc3d46c55f44a75e29afe.tar.gz
fix markdown test
Diffstat (limited to 'test')
-rw-r--r--test/test-markdown-element-attributes.html6
-rw-r--r--test/test-markdown-element-attributes.js2
2 files changed, 4 insertions, 4 deletions
diff --git a/test/test-markdown-element-attributes.html b/test/test-markdown-element-attributes.html
index fd44cd2..6edf95e 100644
--- a/test/test-markdown-element-attributes.html
+++ b/test/test-markdown-element-attributes.html
@@ -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"} -->
---
diff --git a/test/test-markdown-element-attributes.js b/test/test-markdown-element-attributes.js
index 4541077..10a2503 100644
--- a/test/test-markdown-element-attributes.js
+++ b/test/test-markdown-element-attributes.js
@@ -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() {