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

pmcelhaney / counterfact / 3596104599

pending completion
3596104599

push

github

GitHub
Update dependency fs-extra to v11

380 of 401 branches covered (94.76%)

Branch coverage included in aggregate %.

1777 of 1999 relevant lines covered (88.89%)

21.89 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
23✔
3
    .map(([key, value]) => `${key}: ${value}`)
23✔
4
    .join(",\n")}\n}`;
23✔
5
}
23✔
6

1✔
7
export function printObject(entries) {
1✔
8
  return `{\n${entries
22✔
9
    .map(([key, value]) => `"${key}": ${value}`)
22✔
10
    .join(",\n")}\n}`;
22✔
11
}
22✔
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