2014-06-26 19:41:23 -07:00
|
|
|
asyncTest('Simple', function() {
|
|
|
|
|
// expect(1);
|
2014-05-20 16:40:35 -07:00
|
|
|
var parser = new RecentRunes(mediawiki);
|
2014-06-26 19:41:23 -07:00
|
|
|
console.log('foo');
|
|
|
|
|
var result = parser.parseString('wikidoc',
|
2014-05-20 16:40:35 -07:00
|
|
|
'=== Heading ===\n\
|
|
|
|
|
This is a wiki doc.\n\
|
|
|
|
|
How about some <b>bold and <i>bold italic</i></b>.\n\
|
|
|
|
|
I would also love some <nowiki>nowiki <b>foo</b></nowiki>');
|
|
|
|
|
console.log(result);
|
2014-06-26 19:41:23 -07:00
|
|
|
document.body.appendChild(result);
|
2014-05-20 12:49:30 -07:00
|
|
|
});
|