(expected?: number[])
| 355 | } |
| 356 | |
| 357 | public expectToHaveDiagnostics(expected?: number[]): this { |
| 358 | if (this.diagnosticsChecked) return this; |
| 359 | this.diagnosticsChecked = true; |
| 360 | |
| 361 | expect(this.getLuaDiagnostics()).toHaveDiagnostics(expected); |
| 362 | return this; |
| 363 | } |
| 364 | |
| 365 | public expectToHaveNoDiagnostics(): this { |
| 366 | if (this.diagnosticsChecked) return this; |
nothing calls this directly
no test coverage detected