()
| 75 | } |
| 76 | |
| 77 | function resolveFlavor(): string { |
| 78 | const flavor = determineProjectFlavor(); |
| 79 | if (!flavor) { |
| 80 | return 'javascript'; |
| 81 | } |
| 82 | return flavor; |
| 83 | } |
| 84 | |
| 85 | function getFlavorImportAndConfig(flavor: string): { importLine: string; configExpr: string } { |
| 86 | switch (flavor) { |
no test coverage detected