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

typeorm / typeorm / 14796576772

02 May 2025 01:52PM UTC coverage: 45.367% (-30.9%) from 76.309%
14796576772

Pull #11434

github

web-flow
Merge ec4ce2d00 into fadad1a74
Pull Request #11434: feat: release PR releases using pkg.pr.new

5216 of 12761 branches covered (40.87%)

Branch coverage included in aggregate %.

11439 of 23951 relevant lines covered (47.76%)

15712.55 hits per line

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

40.0
/src/error/ForbiddenTransactionModeOverrideError.ts
1
import { Migration } from "../migration/Migration"
2
import { TypeORMError } from "./TypeORMError"
36✔
3

4
/**
5
 * Thrown when the per-migration transaction mode is overriden but the global transaction mode is set to "all".
6
 */
7
export class ForbiddenTransactionModeOverrideError extends TypeORMError {
36✔
8
    constructor(migrationsOverridingTransactionMode: Migration[]) {
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
}
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