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

pmcelhaney / counterfact / 3919348865

pending completion
3919348865

push

github

GitHub
Update dependency eslint-config-hardcore to v26

398 of 420 branches covered (94.76%)

Branch coverage included in aggregate %.

1802 of 2023 relevant lines covered (89.08%)

22.18 hits per line

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

89.47
/src/typescript-generator/printers.js
1
export function printObjectWithoutQuotes(entries) {
1✔
2
  return `{\n${entries
24✔
3
    .map(([key, value]) => `${key}: ${value}`)
24✔
4
    .join(",\n")}\n}`;
24✔
5
}
24✔
6

1✔
7
export function printObject(entries) {
1✔
8
  return `{\n${entries
23✔
9
    .map(([key, value]) => `"${key}": ${value}`)
23✔
10
    .join(",\n")}\n}`;
23✔
11
}
23✔
12

1✔
13
export function printArray(items) {
1✔
14
  return `[\n${items.join(",\n")}\n]`;
×
15
}
×
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