(testObj: ITestObject)
| 55 | export const newTest = (testObj: ITestObject) => newTestGeneric(testObj, test, testIt); |
| 56 | |
| 57 | export const newTestOnly = (testObj: ITestObject) => { |
| 58 | console.warn('!!! Running single test !!!'); |
| 59 | return newTestGeneric(testObj, test.only, testIt); |
| 60 | }; |
| 61 | |
| 62 | export const newTestSkip = (testObj: ITestObject, skipCondition: boolean = true) => |
| 63 | newTestGeneric(testObj, skipCondition ? test.skip : test, testIt); |
nothing calls this directly
no test coverage detected