• 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

42.86
/src/entity-schema/EntitySchemaEmbeddedError.ts
1
import { TypeORMError } from "../error"
26✔
2

26✔
3
export class EntitySchemaEmbeddedError extends TypeORMError {
26✔
4
    static createEntitySchemaIsRequiredException(
26✔
5
        field: string,
×
6
    ): EntitySchemaEmbeddedError {
×
7
        return new EntitySchemaEmbeddedError(
×
8
            `EntitySchema is required for ${field} embedded field`,
×
9
        )
×
10
    }
×
11

26✔
12
    static createTargetIsRequired(field: string): EntitySchemaEmbeddedError {
26✔
13
        return new EntitySchemaEmbeddedError(
×
14
            `Target field is required for ${field} embedded EntitySchema`,
×
15
        )
×
16
    }
×
17

26✔
18
    constructor(message: string) {
26✔
19
        super(message)
×
20
    }
×
21
}
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