File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ describe('Parse Markdown', () => {
5151</div>` ) ;
5252 } ) ;
5353
54- it ( 'parses markdown with live code blocks' , ( done ) => {
54+ it ( 'parses markdown with live code blocks' , done => {
5555 parser . parse ( mdExample ) . then ( result => {
5656 result . html . should . contain ( `<div class="run"><HelloWorld />
5757<Button label="Hello World" />
@@ -61,7 +61,7 @@ describe('Parse Markdown', () => {
6161 . catch ( done ) ;
6262 } ) ;
6363
64- it ( 'parses markdown and created valid html for JSX' , ( done ) => {
64+ it ( 'parses markdown and created valid html for JSX' , done => {
6565 const
6666 exampleCode = '' ;
6767 parser . parse ( exampleCode ) . then ( result => {
@@ -71,7 +71,7 @@ describe('Parse Markdown', () => {
7171 . catch ( done ) ;
7272 } ) ;
7373
74- it ( 'provides the front-matter attributes' , ( done ) => {
74+ it ( 'provides the front-matter attributes' , done => {
7575 parser . parse ( mdExample ) . then ( result => {
7676 result . attributes [ 'test-front-matter' ] . should . equal ( 'hello world' ) ;
7777 } )
You can’t perform that action at this time.
0 commit comments