Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleAMathews committed Dec 22, 2017
1 parent 7e1b3cb commit 3a0443f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions packages/gatsby-remark-custom-blocks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ plugins: [
options: {
plugins: [
{
resolve: 'gatsby-remark-custom-blocks',
resolve: "gatsby-remark-custom-blocks",
options: {
blocks: {
danger: 'custom-block-danger',
info: 'custom-block-info',
danger: "custom-block-danger",
info: "custom-block-info",
},
},
},
Expand Down
3 changes: 1 addition & 2 deletions packages/gatsby-remark-custom-blocks/src/__tests__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ describe(`gatsby-remark-custom-blocks`, () => {
[[someType]]
| content
[[anotherType]]
| content`
)
| content`)
expect(find(markdownAST, { type: `someTypeCustomBlock` })).toBeTruthy()
expect(find(markdownAST, { type: `anotherTypeCustomBlock` })).toBeTruthy()
})
Expand Down

0 comments on commit 3a0443f

Please sign in to comment.