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

typeorm / typeorm / 23390157208

21 Mar 2026 10:26PM UTC coverage: 56.678% (-16.6%) from 73.277%
23390157208

Pull #12252

github

web-flow
Merge 5b60ba41c into 7038fa166
Pull Request #12252: fix: unskip cascade soft remove test

17767 of 26580 branches covered (66.84%)

Branch coverage included in aggregate %.

64033 of 117744 relevant lines covered (54.38%)

1514.83 hits per line

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

47.37
/src/error/ForbiddenTransactionModeOverrideError.ts
1
import type { Migration } from "../migration/Migration"
28✔
2
import { TypeORMError } from "./TypeORMError"
28✔
3

28✔
4
/**
28✔
5
 * Thrown when the per-migration transaction mode is overriden but the global transaction mode is set to "all".
28✔
6
 */
28✔
7
export class ForbiddenTransactionModeOverrideError extends TypeORMError {
28✔
8
    constructor(migrationsOverridingTransactionMode: Migration[]) {
28✔
9
        const migrationNames = migrationsOverridingTransactionMode.map(
×
10
            (migration) => `"${migration.name}"`,
×
11
        )
×
12

×
13
        super(
×
14
            `Migrations ${migrationNames.join(
×
15
                ", ",
×
16
            )} override the transaction mode, but the global transaction mode is "all"`,
×
17
        )
×
18
    }
×
19
}
28✔
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