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

pmcelhaney / counterfact / 5837079355

11 Aug 2023 09:10PM UTC coverage: 87.031%. Remained the same
5837079355

push

github

web-flow
Merge pull request #494 from pmcelhaney/shebangs-shebangs

fix an issue where ts-node was not being used

407 of 434 branches covered (93.78%)

Branch coverage included in aggregate %.

1821 of 2126 relevant lines covered (85.65%)

21.22 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