(
args: readonly string[],
options: Parameters<Host['executeNgCommand']>[1] = {},
)
| 367 | return baseHost.glob(pattern, options); |
| 368 | }, |
| 369 | executeNgCommand( |
| 370 | args: readonly string[], |
| 371 | options: Parameters<Host['executeNgCommand']>[1] = {}, |
| 372 | ) { |
| 373 | const effectiveCwd = options?.cwd ?? process.cwd(); |
| 374 | checkPath(effectiveCwd); |
| 375 | |
| 376 | return baseHost.executeNgCommand(args, options); |
| 377 | }, |
| 378 | startNgProcess(args: readonly string[], options: Parameters<Host['startNgProcess']>[1] = {}) { |
| 379 | const effectiveCwd = options?.cwd ?? process.cwd(); |
| 380 | checkPath(effectiveCwd); |
nothing calls this directly
no test coverage detected