Skip to content

Commit 7d189dc

Browse files
GeorgeTaveras1231javiercf
authored andcommitted
Fix lint errors
1 parent 320794f commit 7d189dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/parser.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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 = '![](myImage.png)';
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
})

0 commit comments

Comments
 (0)