-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkdown.js
49 lines (49 loc) · 1.27 KB
/
markdown.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
casper.test.begin('markdown', 5, function (test) {
casper
.start('examples/markdown/index.html')
.then(function () {
test.assertEval(function () {
return document.querySelector('textarea').value === '# hello'
})
test.assertEval(function () {
return document.querySelector('#editor div')
.innerHTML === '<h1 id="hello">hello</h1>\n'
})
})
.then(function () {
this.sendKeys(
'textarea',
'## foo\n\n' +
'- bar\n' +
'- baz\n\n',
{ keepFocus: true }
)
// keyUp(13)
})
.then(function () {
// assert the output is not updated yet because of
// debounce
test.assertEval(function () {
return document.querySelector('#editor div')
.innerHTML === '<h1 id="hello">hello</h1>\n'
})
})
.wait(300) // wait for debounce
.then(function () {
test.assertEval(function () {
return document.querySelector('textarea').value ===
'## foo\n\n- bar\n- baz\n\n# hello'
})
test.assertEval(function () {
return document.querySelector('#editor div')
.innerHTML ===
'<h2 id="foo">foo</h2>\n' +
'<ul>\n<li>bar</li>\n<li>baz</li>\n</ul>\n' +
'<h1 id="hello">hello</h1>\n'
})
})
// run
.run(function () {
test.done()
})
})