(fileName: string)
| 116 | } |
| 117 | |
| 118 | assertExists(fileName: string) { |
| 119 | if (!this.fs.exists(this.fs.resolve(this.outDir, fileName))) { |
| 120 | throw new Error(`Expected ${fileName} to be emitted (outDir: ${this.outDir})`); |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | assertDoesNotExist(fileName: string) { |
| 125 | if (this.fs.exists(this.fs.resolve(this.outDir, fileName))) { |
no test coverage detected