| 72 | newTestGeneric(testObj, test.skip, testItWithRemaps); |
| 73 | |
| 74 | interface 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 | |
| 94 | type Step = { |
| 95 | title?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected