(testName, logInput, refOutput, args=[])
| 515 | })(); |
| 516 | |
| 517 | async function testTickProcessor(testName, logInput, refOutput, args=[]) { |
| 518 | console.log('=== testProcessing-' + testName + ' ==='); |
| 519 | await testTickProcessorBasic(logInput, refOutput, args); |
| 520 | // Using BigInt address should not affect the output. |
| 521 | console.log('=== testProcessing-' + testName + '-bigint-addresses ==='); |
| 522 | await testTickProcessorBasic( |
| 523 | logInput, refOutput, [...args, '--use-bigint-addresses']); |
| 524 | } |
| 525 | |
| 526 | async function testTickProcessorBasic( |
| 527 | logInput, refOutput, args=[]) { |
no test coverage detected
searching dependent graphs…