(repoRoot: string)
| 119 | yield* writeFixturePackage(leftRoot, { "Choice.d.ts": "export type Choice = string | number\n" }) |
| 120 | yield* writeFixturePackage(rightRoot, { "Choice.d.ts": "export type Choice = number | string\n" }) |
| 121 | const extract = (repoRoot: string) => |
| 122 | snapshotter.extract({ |
| 123 | repoRoot, |
| 124 | ref: "fixture", |
| 125 | sha: "0000000000000000000000000000000000000000", |
| 126 | modules: ["@fixture/sample/Choice"] |
| 127 | }).pipe(Effect.map((snapshot) => snapshot.entities[0]?.fingerprint)) |
| 128 | assert.strictEqual(yield* extract(leftRoot), yield* extract(rightRoot)) |
| 129 | }).pipe(Effect.provide(MainLayer))) |
| 130 | }) |
no test coverage detected