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

LukaJCB / ts-mls / 17283659198

28 Aug 2025 02:05AM UTC coverage: 93.75% (+1.7%) from 92.046%
17283659198

push

github

web-flow
Migrate from jest to vitest and parallelize tests (#90)

1121 of 1250 branches covered (89.68%)

Branch coverage included in aggregate %.

388 of 393 new or added lines in 63 files covered. (98.73%)

57 existing lines in 13 files now uncovered.

6364 of 6734 relevant lines covered (94.51%)

51774.21 hits per line

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

88.89
/src/mlsError.ts
1
export class MlsError extends Error {
1✔
2
  constructor(message: string) {
1✔
3
    super(message)
2,696✔
4
    this.name = "MlsError"
2,696✔
5
  }
2,696✔
6
}
1✔
7

8
export class ValidationError extends MlsError {
1✔
9
  constructor(message: string) {
1✔
10
    super(message)
456✔
11
    this.name = "ValidationError"
456✔
12
  }
456✔
13
}
1✔
14

15
export class CodecError extends MlsError {
1✔
16
  constructor(message: string) {
1✔
17
    super(message)
43✔
18
    this.name = "CodecError"
43✔
19
  }
43✔
20
}
1✔
21

22
export class UsageError extends MlsError {
1✔
23
  constructor(message: string) {
1✔
24
    super(message)
121✔
25
    this.name = "UsageError"
121✔
26
  }
121✔
27
}
1✔
28

29
export class DependencyError extends MlsError {
1✔
30
  constructor(message: string) {
1✔
31
    super(message)
×
32
    this.name = "DependencyError"
×
UNCOV
33
  }
×
34
}
1✔
35

36
export class CryptoVerificationError extends MlsError {
1✔
37
  constructor(message: string) {
1✔
38
    super(message)
×
39
    this.name = "CryptoVerificationError"
×
UNCOV
40
  }
×
41
}
1✔
42

43
export class CryptoError extends MlsError {
1✔
44
  constructor(message: string) {
1✔
45
    super(message)
10✔
46
    this.name = "CryptoError"
10✔
47
  }
10✔
48
}
1✔
49

50
export class InternalError extends MlsError {
1✔
51
  constructor(message: string) {
1✔
52
    super(`This error should never occur, if you see this please submit a bug report. Message: ${message}`)
2,066✔
53
    this.name = "InternalError"
2,066✔
54
  }
2,066✔
55
}
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

© 2026 Coveralls, Inc