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

getdozer / dozer / 5970668152

25 Aug 2023 01:13AM UTC coverage: 75.462%. First build
5970668152

Pull #1910

github

mediuminvader
Add concurrency group
Pull Request #1910: chore: Create unit tests workflow

46984 of 62262 relevant lines covered (75.46%)

48094.29 hits per line

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

0.0
/dozer-cli/src/console_helper.rs
1
pub fn get_colored_text(text: &str, color_code: &str) -> String {
×
2
    let mut result = String::from("\u{1b}[");
×
3
    result.push_str(color_code);
×
4
    result.push_str(";1m"); // End token.
×
5
    result.push_str(text);
×
6
    result.push_str("\u{1b}[0m");
×
7
    result
×
8
}
×
9

10
pub const RED: &str = "31";
11
pub const GREEN: &str = "32";
12
pub const PURPLE: &str = "35";
13
pub const YELLOW: &str = "136";
14
pub const GREY: &str = "250";
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