(entrypoint, root, args = [])
| 23 | } |
| 24 | |
| 25 | function run(entrypoint, root, args = []) { |
| 26 | return spawnSync(process.execPath, [entrypoint, "--root", root, ...args], { |
| 27 | cwd: root, |
| 28 | encoding: "utf8", |
| 29 | }); |
| 30 | } |
| 31 | |
| 32 | test("README hygiene entrypoint reports only README catalog failures", () => { |
| 33 | const root = makeFixture(); |
no outgoing calls
no test coverage detected