(p)
| 8 | const readText = (p) => fs.readFileSync(p, "utf8"); |
| 9 | |
| 10 | const assertFileExists = (p) => { |
| 11 | assert.equal(fs.existsSync(p), true, `Expected file to exist: ${p}`); |
| 12 | }; |
| 13 | |
| 14 | test("packaging config references build resources that exist", () => { |
| 15 | const pkgPath = path.join(repoRoot, "package.json"); |
no outgoing calls
no test coverage detected