(testObj: ITestWithRemapsObject)
| 63 | newTestGeneric(testObj, skipCondition ? test.skip : test, testIt); |
| 64 | |
| 65 | export const newTestWithRemaps = (testObj: ITestWithRemapsObject) => |
| 66 | newTestGeneric(testObj, test, testItWithRemaps); |
| 67 | export const newTestWithRemapsOnly = (testObj: ITestWithRemapsObject) => { |
| 68 | console.warn('!!! Running single test !!!'); |
| 69 | return newTestGeneric(testObj, test.only, testItWithRemaps); |
no test coverage detected