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

Commit 1766ef4

Browse files
author
Alan Shaw
authored
fix: allow only by object (#407)
The only option will now accept an object for onlying a specific test. Previously you could only do this to only run a specific test: ```js { only: ['should test a thing'] } ``` Now you can do this: ```js { only: [{ name: 'should test a thing', reason: 'because development' // optional! }] } ``` License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 570aaf0 commit 1766ef4

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

js/src/utils/mocha.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,21 @@ function getIt (config) {
5959
}
6060

6161
if (Array.isArray(config.only)) {
62-
if (config.only.includes(name)) return it.only(name, impl) // eslint-disable-line
62+
const only = config.only
63+
.map((o) => isObject(o) ? o : { name: o })
64+
.find((o) => o.name === name)
65+
66+
if (only) {
67+
if (only.reason) name = `${name} (${only.reason})`
68+
return it.only(name, impl) // eslint-disable-line no-only-tests/no-only-tests
69+
}
6370
}
6471

6572
it(name, impl)
6673
}
6774

6875
_it.skip = it.skip
69-
_it.only = it.only // eslint-disable-line
76+
_it.only = it.only // eslint-disable-line no-only-tests/no-only-tests
7077

7178
return _it
7279
}

0 commit comments

Comments
 (0)