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

Interface ITestObject

test/testSimplifier.ts:74–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72 newTestGeneric(testObj, test.skip, testItWithRemaps);
73
74interface ITestObject {
75 title: string;
76 config?: Partial<IConfiguration>;
77 editorOptions?: vscode.TextEditorOptions;
78 start: string[];
79 keysPressed: string;
80 end: string[];
81 endMode?: Mode;
82 endFsPath?: string | (() => string);
83 registers?: { [name: string]: string | undefined };
84 statusBar?: string;
85 jumps?: string[];
86 stub?: {
87 stubClass: any;
88 methodName: string;
89 returnValue: any;
90 };
91 saveDocBeforeTest?: boolean;
92}
93
94type Step = {
95 title?: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected