(cwd: string | undefined)
| 18 | |
| 19 | describe("Settings E2E", function () { |
| 20 | async function changeCwdSetting(cwd: string | undefined): Promise<void> { |
| 21 | await changeSetting( |
| 22 | "cwd", |
| 23 | cwd, |
| 24 | vscode.ConfigurationTarget.Workspace, |
| 25 | undefined, |
| 26 | ); |
| 27 | } |
| 28 | |
| 29 | async function resetCwdSetting(): Promise<void> { |
| 30 | await changeCwdSetting(undefined); |
no test coverage detected