Problem
tests/integration/build-parity.test.ts > Build parity: native vs WASM — sample-project (JS) > produces identical edges fails pre-existing on fix/issue-1656:
- Expected (WASM): no receiver edge main → Calculator
+ Received (native): extra receiver edge from main to Calculator
The native engine emits an extra receiver edge:
{ kind: 'receiver', source_name: 'main', target_name: 'Calculator' }
that the WASM engine does not emit. Both engines produce the correct calls edge from main to Calculator.
Steps to reproduce
npx vitest run tests/integration/build-parity.test.ts
Notes
Reactions are currently unavailable
Problem
tests/integration/build-parity.test.ts > Build parity: native vs WASM — sample-project (JS) > produces identical edges fails pre-existing on fix/issue-1656:
The native engine emits an extra receiver edge:
{ kind: 'receiver', source_name: 'main', target_name: 'Calculator' }that the WASM engine does not emit. Both engines produce the correct calls edge from main to Calculator.
Steps to reproduce
Notes