• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

snatalenko / node-cqrs / 21691215298

04 Feb 2026 10:41PM UTC coverage: 84.53% (-9.9%) from 94.396%
21691215298

Pull #28

github

web-flow
Merge 13eb0e2b2 into 828e39903
Pull Request #28: TypeScript and event dispatching pipeline refactoring

611 of 939 branches covered (65.07%)

819 of 934 new or added lines in 65 files covered. (87.69%)

59 existing lines in 13 files now uncovered.

1213 of 1435 relevant lines covered (84.53%)

28.38 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

80.0
/src/utils/iteratorToArray.ts
1
export async function iteratorToArray<T>(input: AsyncIterable<T> | Iterable<T>): Promise<T[]> {
40✔
2
        const result: T[] = [];
2✔
3
        for await (const item of input)
2✔
NEW
4
                result.push(item);
×
5
        return result;
2✔
6
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc