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

LukaJCB / ts-mls / 20944655171

13 Jan 2026 04:25AM UTC coverage: 95.199% (-0.5%) from 95.727%
20944655171

Pull #200

github

web-flow
Merge eec989c7f into 6f65b753e
Pull Request #200: Use CiphersuiteId instead of CiphersuiteName for internal values

412 of 421 branches covered (97.86%)

Branch coverage included in aggregate %.

193 of 208 new or added lines in 35 files covered. (92.79%)

6 existing lines in 3 files now uncovered.

2364 of 2495 relevant lines covered (94.75%)

72670.37 hits per line

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

75.0
/src/defaultCredentialType.ts
1
/** @public */
2
export const defaultCredentialTypes = {
3✔
3
  basic: 1,
4
  x509: 2,
5
} as const
6

7
/** @public */
8
export type DefaultCredentialTypeName = keyof typeof defaultCredentialTypes
9
/** @public */
10
export type DefaultCredentialTypeValue = (typeof defaultCredentialTypes)[DefaultCredentialTypeName]
11

12
const defaultCredentialTypeValues = new Set<number>(Object.values(defaultCredentialTypes))
3✔
13

14
export function defaultCredentialTypeValueFromName(name: DefaultCredentialTypeName): DefaultCredentialTypeValue {
NEW
15
  return defaultCredentialTypes[name]
×
16
}
17

18
export function isDefaultCredentialTypeValue(v: number): v is DefaultCredentialTypeValue {
19
  return defaultCredentialTypeValues.has(v)
91,652✔
20
}
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