Coder Social home page Coder Social logo

go-test-color's Introduction

go-test-color

Go Go Reference

Run go test with color.

Install

With Go version >= 1.16:

go install github.com/haunt98/go-test-color@latest

With Go version < 1.16:

GO111module=on go get -u github.com/haunt98/go-test-color

Usage

# Simply replace go test with go-test-color
go-test-color -v ./...

Thanks

go-test-color's People

Contributors

dependabot[bot] avatar haunt98 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

go-test-color's Issues

Goroutine leak detected

I added a test file main_test.go with the following content:

package main

import "testing"

func TestX(t *testing.T) {
	if 1 != 2 {
		t.Fail()
	}
}

Then I ran this test file and got the following output (which is fine):

--- FAIL: TestX (0.00s)
FAIL
exit status 1
FAIL    github.com/haunt98/go-test-color        0.333s
2022/07/24 14:28:42 Failed to wait: exit status 1

When I added a time.Sleep(2*time.Second) at line 64 to mimic a very costly operation and ran the test again, I got the following result:

--- FAIL: TestX (0.00s)
FAIL
2022/07/24 14:31:32 Failed to wait: exit status 1

The above result doesn't contain execution time of this test package (FAIL github.com/haunt98/go-test-color 0.333s). Thus, goroutine leak is happening with your code.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.