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

murt / aaarray / 3898741875

pending completion
3898741875

push

github

GitHub
Bump chromedriver from 90.0.0 to 109.0.0

104 of 153 branches covered (67.97%)

Branch coverage included in aggregate %.

176 of 218 relevant lines covered (80.73%)

16.11 hits per line

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

85.71
/src/utils.ts
1
// Array polyfills for flat and flatMap
2
// @ts-expect-error
3
export const flat: typeof Array.prototype.flat = function (depth?: number) {
21✔
4
    return depth
15✔
5
        ? Array.prototype.reduce.call(
15✔
6
              this,
7
              (prev: any, cur) => (cur instanceof Array ? prev.concat(flat.call(cur, depth - 1)) : prev.concat(cur)),
12!
8
              []
9
          )
10
        : this;
11
};
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