(p)
| 119 | }) |
| 120 | |
| 121 | function assertExists(p) { |
| 122 | assert.ok(fs.existsSync(p), `expected ${p} to exist`) |
| 123 | } |
| 124 | |
| 125 | function assertContents(p, c) { |
| 126 | assert.strictEqual(fs.readFileSync(p, 'utf8'), c, `unexpected file contents for ${p}`) |
no test coverage detected