| 11 | import { E2eProjectGeneratorSchema } from "./schema"; |
| 12 | |
| 13 | interface NormalizedSchema extends E2eProjectGeneratorSchema { |
| 14 | projectName: string; |
| 15 | projectRoot: string; |
| 16 | projectDirectory: string; |
| 17 | } |
| 18 | |
| 19 | function normalizeOptions(_tree: Tree, options: E2eProjectGeneratorSchema): NormalizedSchema { |
| 20 | const e2eRoot = "e2e"; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…