()
| 88 | ]; |
| 89 | |
| 90 | const getStateFile = async () => { |
| 91 | const res = JSON.parse((await readFile(stateFile, 'utf8')).replaceAll('\\\\', '/')); |
| 92 | res.forEach((entry) => { |
| 93 | for (const item in entry) { |
| 94 | delete entry[item].children; |
| 95 | delete entry[item].duration_ms; |
| 96 | } |
| 97 | }); |
| 98 | return res; |
| 99 | }; |
| 100 | |
| 101 | test('test should pass on third rerun', async () => { |
| 102 | const args = ['--test-rerun-failures', stateFile, fixture]; |
no test coverage detected
searching dependent graphs…