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

cameri / nostream / 25601018106

09 May 2026 12:22PM UTC coverage: 33.99% (-31.1%) from 65.107%
25601018106

Pull #615

github

web-flow
Merge 1ef509ec3 into 36e5af87e
Pull Request #615: test: add unit tests for remaining app workers (#489)

788 of 3170 branches covered (24.86%)

Branch coverage included in aggregate %.

0 of 8 new or added lines in 2 files covered. (0.0%)

1822 existing lines in 87 files now uncovered.

2352 of 6068 relevant lines covered (38.76%)

13.55 hits per line

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

0.0
/src/cli/utils/output.ts
UNCOV
1
import { bold, cyan, red, yellow, green } from 'colorette'
×
2

UNCOV
3
const writeStdout = (message: string): void => {
×
4
  process.stdout.write(`${message}\n`)
×
5
}
6

UNCOV
7
const writeStderr = (message: string): void => {
×
8
  process.stderr.write(`${message}\n`)
×
9
}
10

UNCOV
11
export const logStep = (message: string): void => {
×
12
  writeStdout(cyan(`• ${message}`))
×
13
}
14

UNCOV
15
export const logInfo = (message: string): void => {
×
16
  writeStdout(message)
×
17
}
18

UNCOV
19
export const logSuccess = (message: string): void => {
×
20
  writeStdout(green(message))
×
21
}
22

UNCOV
23
export const logWarn = (message: string): void => {
×
24
  writeStderr(yellow(message))
×
25
}
26

UNCOV
27
export const logError = (message: string): void => {
×
28
  writeStderr(red(message))
×
29
}
30

UNCOV
31
export const title = (label: string): string => bold(label)
×
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