(variableName: string)
| 6 | private promptCalled = false; |
| 7 | |
| 8 | protected getVariableValue(variableName: string): string { |
| 9 | // This is the fix we're testing |
| 10 | return (this.variables.get(variableName) as string) ?? ""; |
| 11 | } |
| 12 | |
| 13 | /** Returns true when a variable is present AND its value is not undefined. |
| 14 | * Null and empty string are considered intentional values. */ |
no test coverage detected