(str)
| 63 | } |
| 64 | |
| 65 | function isMustCallOrTest(str) { |
| 66 | return str === 'test' || str === 'it' || str === 'describe' || str === 'suite' || |
| 67 | str === 'before' || str === 'after' || str === 'beforeEach' || str === 'afterEach' || |
| 68 | isMustCallOrMustCallAtLeast(str); |
| 69 | } |
| 70 | |
| 71 | module.exports = { |
| 72 | meta: { |
no test coverage detected
searching dependent graphs…