()
| 363 | } |
| 364 | |
| 365 | public expectToHaveNoDiagnostics(): this { |
| 366 | if (this.diagnosticsChecked) return this; |
| 367 | this.diagnosticsChecked = true; |
| 368 | |
| 369 | expect(this.getLuaDiagnostics()).not.toHaveDiagnostics(); |
| 370 | return this; |
| 371 | } |
| 372 | |
| 373 | public expectNoTranspileException(): this { |
| 374 | expect(() => this.getLuaResult()).not.toThrow(); |
nothing calls this directly
no test coverage detected