• 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

61.54
/src/error/AlreadyHasActiveConnectionError.ts
1
import { TypeORMError } from "./TypeORMError"
28✔
2

28✔
3
/**
28✔
4
 * Thrown when consumer tries to recreate connection with the same name, but previous connection was not closed yet.
28✔
5
 */
28✔
6
export class AlreadyHasActiveConnectionError extends TypeORMError {
28✔
7
    constructor(connectionName: string) {
28✔
8
        super(
×
9
            `Cannot create a new connection named "${connectionName}", because connection with such name ` +
×
10
                `already exist and it now has an active connection session.`,
×
11
        )
×
12
    }
×
13
}
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