Skip to content

Commit 4cef519

Browse files
committed
ci: remove gitter notify workflow & use engineOptions in tests
1 parent d05e39a commit 4cef519

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.github/workflows/gitter.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

test/index.cjs

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ describe('@metalsmith/markdown', function () {
8585
msCommon('test/fixtures/basic')
8686
.use(
8787
markdown({
88-
smartypants: true
88+
engineOptions: {
89+
smartypants: true
90+
}
8991
})
9092
)
9193
.build(function (err) {
@@ -202,7 +204,9 @@ describe('@metalsmith/markdown', function () {
202204
.use(
203205
markdown({
204206
keys: ['custom'],
205-
smartypants: true
207+
engineOptions: {
208+
smartypants: true
209+
}
206210
})
207211
)
208212
.build(function (err, files) {
@@ -217,7 +221,9 @@ describe('@metalsmith/markdown', function () {
217221
.use(
218222
markdown({
219223
keys: ['custom', 'nested.key.path'],
220-
smartypants: true
224+
engineOptions: {
225+
smartypants: true
226+
}
221227
})
222228
)
223229
.build(function (err, files) {
@@ -315,7 +321,9 @@ describe('@metalsmith/markdown', function () {
315321
markdown({
316322
keys: ['arr.*', 'objarr.*.prop', 'wildcard.faq.*.*', 'wildcard.titles.*'],
317323
wildcard: '*',
318-
smartypants: true
324+
engineOptions: {
325+
smartypants: true
326+
}
319327
})
320328
)
321329
.build(function (err, files) {

0 commit comments

Comments
 (0)