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

snatalenko / node-cqrs / 21845544207

09 Feb 2026 11:50PM UTC coverage: 85.047%. First build
21845544207

Pull #31

github

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

650 of 986 branches covered (65.92%)

140 of 155 new or added lines in 17 files covered. (90.32%)

1257 of 1478 relevant lines covered (85.05%)

31.91 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