We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f10831b commit fdca2edCopy full SHA for fdca2ed
test/internal-events/fixtures/ava.config.js
@@ -12,10 +12,8 @@ export default {
12
async observeRun(run) {
13
for await (const event of run.events) {
14
internalEvents.push(event);
15
-
16
- if (event.type === 'end') {
17
- await fs.writeFile('internal-events.json', JSON.stringify(internalEvents));
18
- }
19
}
+
+ await fs.writeFile('internal-events.json', JSON.stringify(internalEvents));
20
},
21
};
0 commit comments