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

snatalenko / node-cqrs / 21873137262

10 Feb 2026 04:23PM UTC coverage: 85.173%. First build
21873137262

Pull #31

github

web-flow
Merge 8c5d5890b into 025edb883
Pull Request #31: Multi-saga correlation via `message.sagaOrigins`

657 of 993 branches covered (66.16%)

143 of 158 new or added lines in 17 files covered. (90.51%)

1258 of 1477 relevant lines covered (85.17%)

33.43 hits per line

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

66.67
/src/interfaces/ILocker.ts
1
import { isObject } from './isObject.ts';
46✔
2

3
export interface ILockerLease {
4
        release(): void;
5
        [Symbol.dispose](): void;
6
}
7

8
export interface ILocker {
9
        acquire(name?: string): Promise<ILockerLease>;
10
}
11

12
export const isExecutionLocker = (obj: unknown): obj is ILocker =>
46✔
NEW
13
        isObject(obj)
×
14
        && 'acquire' in obj
15
        && typeof obj.acquire === 'function';
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