(
logInput, refOutput, args=[])
| 524 | } |
| 525 | |
| 526 | async function testTickProcessorBasic( |
| 527 | logInput, refOutput, args=[]) { |
| 528 | // /foo/bar/tickprocessor.mjs => /foo/bar/ |
| 529 | const dir = import.meta.url.split("/").slice(0, -1).join('/') + '/'; |
| 530 | const params = ArgumentsProcessor.process(args); |
| 531 | await testExpectations(dir, logInput, refOutput, params); |
| 532 | // TODO(cbruni): enable again after it works on bots |
| 533 | // await testEndToEnd(dir, 'tickprocessor-test-large.js', refOutput, params); |
| 534 | } |
| 535 | |
| 536 | async function testExpectations(dir, logInput, refOutput, params) { |
| 537 | const symbolsFile = dir + logInput + '.symbols.json'; |
no test coverage detected
searching dependent graphs…