MCPcopy Index your code
hub / github.com/VSCodeVim/Vim / newTestWithRemapsOnly

Function newTestWithRemapsOnly

test/testSimplifier.ts:67–70  ·  view source on GitHub ↗
(testObj: ITestWithRemapsObject)

Source from the content-addressed store, hash-verified

65export const newTestWithRemaps = (testObj: ITestWithRemapsObject) =>
66 newTestGeneric(testObj, test, testItWithRemaps);
67export const newTestWithRemapsOnly = (testObj: ITestWithRemapsObject) => {
68 console.warn('!!! Running single test !!!');
69 return newTestGeneric(testObj, test.only, testItWithRemaps);
70};
71export const newTestWithRemapsSkip = (testObj: ITestWithRemapsObject) =>
72 newTestGeneric(testObj, test.skip, testItWithRemaps);
73

Callers

nothing calls this directly

Calls 2

newTestGenericFunction · 0.85
warnMethod · 0.80

Tested by

no test coverage detected