(options: ITestObject | Omit<ITestObject, 'title'>)
| 8 | |
| 9 | suite('Record and navigate jumps', () => { |
| 10 | const newJumpTest = (options: ITestObject | Omit<ITestObject, 'title'>) => { |
| 11 | return newTest({ |
| 12 | title: `Can track jumps for keys: ${options.keysPressed.replace(/\n/g, '<CR>')}`, |
| 13 | ...options, |
| 14 | }); |
| 15 | }; |
| 16 | |
| 17 | const newJumpTestSkipOnWindows = (options: ITestObject | Omit<ITestObject, 'title'>) => { |
| 18 | return newTestSkip( |
no test coverage detected