Skip to content

Commit

Permalink
ci: remove gitter notify workflow & use engineOptions in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
webketje committed Feb 26, 2023
1 parent d05e39a commit 4cef519
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/gitter.yml

This file was deleted.

16 changes: 12 additions & 4 deletions test/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ describe('@metalsmith/markdown', function () {
msCommon('test/fixtures/basic')
.use(
markdown({
smartypants: true
engineOptions: {
smartypants: true
}
})
)
.build(function (err) {
Expand Down Expand Up @@ -202,7 +204,9 @@ describe('@metalsmith/markdown', function () {
.use(
markdown({
keys: ['custom'],
smartypants: true
engineOptions: {
smartypants: true
}
})
)
.build(function (err, files) {
Expand All @@ -217,7 +221,9 @@ describe('@metalsmith/markdown', function () {
.use(
markdown({
keys: ['custom', 'nested.key.path'],
smartypants: true
engineOptions: {
smartypants: true
}
})
)
.build(function (err, files) {
Expand Down Expand Up @@ -315,7 +321,9 @@ describe('@metalsmith/markdown', function () {
markdown({
keys: ['arr.*', 'objarr.*.prop', 'wildcard.faq.*.*', 'wildcard.titles.*'],
wildcard: '*',
smartypants: true
engineOptions: {
smartypants: true
}
})
)
.build(function (err, files) {
Expand Down

0 comments on commit 4cef519

Please sign in to comment.