Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 5df855c

Browse files
committed
fix: allow null skip for subsystems
License: MIT Signed-off-by: Alan Shaw <alan@tableflip.io>
1 parent ddc728f commit 5df855c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/src/utils/mocha.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function getDescribe (config) {
1616
if (config.only === true) return describe.only
1717
if (config.skip === true) return describe.skip
1818

19-
if (typeof config.skip === 'object' && config.skip.reason) {
19+
if (config.skip && typeof config.skip === 'object' && config.skip.reason) {
2020
const _describe = (name, impl) => {
2121
describe.skip(`${name} (${config.skip.reason})`, impl)
2222
}

0 commit comments

Comments
 (0)