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

hyperledger-identus / sdk-ts / 14536530200

18 Apr 2025 02:17PM UTC coverage: 82.802% (+7.3%) from 75.544%
14536530200

Pull #419

github

web-flow
Merge d20157089 into 0bddae204
Pull Request #419: test: chai and sinon removal

1711 of 2060 branches covered (83.06%)

Branch coverage included in aggregate %.

1 of 4 new or added lines in 1 file covered. (25.0%)

1047 existing lines in 114 files now uncovered.

9401 of 11360 relevant lines covered (82.76%)

33.67 hits per line

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

50.0
/src/edge-agent/connections/didcomm/ProblemReport.ts
1
import * as Domain from "../../../domain";
2
import { Task } from "../../../utils";
1✔
3
import { ListenerKey } from "../../types";
1✔
4
import { AgentContext } from "../../didcomm/Context";
5

6
/**
7
 * Problem Report
8
 */
9

10
interface Args {
11
  message: Domain.Message;
12
}
13

14
export class ProblemReport extends Task<void, Args> {
1✔
15
  async run(ctx: AgentContext) {
1✔
16
    const msgs = [this.args.message];
×
17
    await ctx.Pluto.storeMessages(msgs);
×
18
    ctx.Events.emit(ListenerKey.MESSAGE, msgs);
×
19
    ctx.logger.warn(`Problem Reported ${this.args.message.from?.toString()}`);
×
UNCOV
20
  }
×
21
}
1✔
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