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

typeorm / typeorm / 19549987525

20 Nov 2025 08:11PM UTC coverage: 80.769% (+4.3%) from 76.433%
19549987525

push

github

web-flow
ci: run tests on commits to master and next (#11783)

Co-authored-by: Oleg "OSA413" Sokolov <OSA413@users.noreply.github.com>

26500 of 32174 branches covered (82.36%)

Branch coverage included in aggregate %.

91252 of 113615 relevant lines covered (80.32%)

88980.79 hits per line

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

85.0
/src/error/TypeORMError.ts
1
export class TypeORMError extends Error {
26✔
2
    get name() {
26✔
3
        return this.constructor.name
1,946✔
4
    }
1,946✔
5

26✔
6
    constructor(message?: string) {
26✔
7
        super(message)
3,619✔
8

3,619✔
9
        // restore prototype chain because the base `Error` type
3,619✔
10
        // will break the prototype chain a little
3,619✔
11
        if (Object.setPrototypeOf) {
3,619✔
12
            Object.setPrototypeOf(this, new.target.prototype)
3,619✔
13
        } else {
3,619!
14
            ;(this as any).__proto__ = new.target.prototype
×
15
        }
×
16
    }
3,619✔
17
}
26✔
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