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

visgl / deck.gl / 10502912171

22 Aug 2024 06:20AM CUT coverage: 61.189% (-28.0%) from 89.221%
10502912171

Pull #9096

github

web-flow
Merge 2623861fe into bf7b00267
Pull Request #9096: GPU Aggregation (5/8): GridLayer

1903 of 2546 branches covered (74.74%)

Branch coverage included in aggregate %.

775 of 823 new or added lines in 10 files covered. (94.17%)

17884 existing lines in 262 files now uncovered.

37927 of 62547 relevant lines covered (60.64%)

158.97 hits per line

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

27.27
/modules/react/src/utils/inherits-from.ts
1
// Check if one JavaScript class inherits from another
1✔
2
export function inheritsFrom<T>(Type: any, ParentType: T): Type is T {
1✔
UNCOV
3
  while (Type) {
×
UNCOV
4
    if (Type === ParentType) {
×
UNCOV
5
      return true;
×
UNCOV
6
    }
×
UNCOV
7
    Type = Object.getPrototypeOf(Type);
×
UNCOV
8
  }
×
UNCOV
9
  return false;
×
UNCOV
10
}
×
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

© 2025 Coveralls, Inc