MCPcopy
hub / github.com/VSCodeVim/Vim / newTestOnly

Function newTestOnly

test/testSimplifier.ts:57–60  ·  view source on GitHub ↗
(testObj: ITestObject)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

newTestGenericFunction · 0.85
warnMethod · 0.80

Tested by

no test coverage detected