(root, args = [])
| 18 | } |
| 19 | |
| 20 | function run(root, args = []) { |
| 21 | return spawnSync(process.execPath, [scriptPath, "--root", root, ...args], { |
| 22 | cwd: root, |
| 23 | encoding: "utf8", |
| 24 | }); |
| 25 | } |
| 26 | |
| 27 | test("fails prompt files that contain invisible Unicode tag characters", () => { |
| 28 | const root = makeFixture(); |
no outgoing calls
no test coverage detected