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 d555319 commit aa5c451Copy full SHA for aa5c451
src/coverage.ts
@@ -40,10 +40,6 @@ export default async (options: IOptions) => {
40
}))
41
});
42
43
- const results = await Promise.all(promises);
44
- options.reporter(results, options.schema);
45
- return results;
46
- }).then((callResults) => {
47
- options.reporter(callResults, options.schema);
48
- });
+ const callResults = await Promise.all(promises);
+ options.reporter(callResults, options.schema);
49
}
0 commit comments