mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-07 10:06:21 +00:00
* fix(ci): update publish workflow to use bun install pnpm-lock.yaml was removed in the bun migration but publish.yml still referenced it. Use bun for install/build, keep pnpm for publish (publishConfig overrides + --provenance). * docs: update stale pnpm references to bun across docs and scripts Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
26 lines
669 B
Markdown
26 lines
669 B
Markdown
# Producer Parity Fixtures
|
|
|
|
Fixtures used by `src/parity-harness.ts`.
|
|
|
|
- `fixtures/minimal-wysiwyg.html`: CI-safe fixture with deterministic animation.
|
|
- `fixtures/good-preview-bad-producer.json`: checkpoint metadata for the known border-radius parity regression.
|
|
|
|
## Local run example
|
|
|
|
```bash
|
|
cd producer/tests/parity/fixtures
|
|
python3 -m http.server 4173
|
|
```
|
|
|
|
Then in another terminal:
|
|
|
|
```bash
|
|
cd producer
|
|
bun run parity:check \
|
|
--preview-url "http://127.0.0.1:4173/minimal-wysiwyg.html" \
|
|
--producer-url "http://127.0.0.1:4173/minimal-wysiwyg.html?mode=producer" \
|
|
--checkpoints "0,0.5,1,1.5" \
|
|
--allow-mismatch-ratio 0 \
|
|
--emulate-producer-swap true
|
|
```
|