Fakes a prompt confirm question with the given value.
(returnValue: boolean)
| 81 | |
| 82 | /** Fakes a prompt confirm question with the given value. */ |
| 83 | function fakePromptConfirmValue(returnValue: boolean) { |
| 84 | spyOn(Prompt, 'confirm').and.resolveTo(returnValue); |
| 85 | } |
| 86 | |
| 87 | /** Fakes a NPM package query API request. */ |
| 88 | function fakeNpmPackageQueryRequest(data: Partial<NpmPackageInfo>) { |