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

iTowns / itowns / 10635241580

30 Aug 2024 03:26PM UTC coverage: 86.966% (-2.8%) from 89.766%
10635241580

push

github

jailln
feat(3dtiles): add new OGC3DTilesLayer using 3d-tiles-renderer-js

Deprecate C3DTilesLayer (replaced by OGC3DTilesLayer).
Add new iGLTFLoader that loads gltf 1.0 and 2.0 files.

2791 of 3694 branches covered (75.55%)

Branch coverage included in aggregate %.

480 of 644 new or added lines in 8 files covered. (74.53%)

2144 existing lines in 111 files now uncovered.

24319 of 27479 relevant lines covered (88.5%)

1024.72 hits per line

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

88.24
/src/Core/Scheduler/CancelledCommandException.js
1
/**
1✔
2
 * Custom error thrown when cancelling commands. Allows the caller to act differently if needed.
1✔
3
 * @class
1✔
4
 * @param {Command} command
1✔
5
 */
1✔
6
class CancelledCommandException {
1✔
7
    constructor(command) {
1✔
8
        this.command = command;
1✔
9
        this.isCancelledCommandException = true;
1✔
10
    }
1✔
11

1✔
12
    toString() {
1✔
UNCOV
13
        return `Cancelled command ${this.command.requester.id}/${this.command.layer.id}`;
×
UNCOV
14
    }
×
15
}
1✔
16
export default CancelledCommandException;
1✔
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