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

cameri / nostream / 24938720143

25 Apr 2026 07:23PM UTC coverage: 63.498% (-12.0%) from 75.491%
24938720143

Pull #574

github

web-flow
Merge 73575abe4 into c0c1c35b8
Pull Request #574: feat: migrate nostream scripts to unified CLI/TUI

1619 of 2880 branches covered (56.22%)

Branch coverage included in aggregate %.

735 of 1701 new or added lines in 29 files covered. (43.21%)

3838 of 5714 relevant lines covered (67.17%)

22.57 hits per line

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

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

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

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

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

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

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

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

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

31
export const title = (label: string): string => bold(label)
2✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc