(fileName: string)
| 122 | } |
| 123 | |
| 124 | assertExists(fileName: string) { |
| 125 | if (!this.fs.exists(this.fs.resolve(this.outDir, fileName))) { |
| 126 | throw new Error(`Expected ${fileName} to be emitted (outDir: ${this.outDir})`); |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | assertDoesNotExist(fileName: string) { |
| 131 | if (this.fs.exists(this.fs.resolve(this.outDir, fileName))) { |
no test coverage detected