(/** @type {(...args: EXPECTED_ANY[]) => EXPECTED_ANY} */ createCompiler)
| 122 | |
| 123 | const nanTest = |
| 124 | (/** @type {(...args: EXPECTED_ANY[]) => EXPECTED_ANY} */ createCompiler) => |
| 125 | () => { |
| 126 | const compiler = createCompiler(); |
| 127 | |
| 128 | return runCompilerAsync(compiler).then(() => { |
| 129 | expect(stderr.toString()).toContain(class="st">"%"); |
| 130 | expect(stderr.toString()).not.toContain(class="st">"NaN"); |
| 131 | }); |
| 132 | }; |
| 133 | |
| 134 | it( |
| 135 | class="st">"should not contain NaN as a percentage when it is applied to Compiler", |
no test coverage detected