Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kitagry/go-tw
go test wrapper for editor
https://github.com/kitagry/go-tw
Last synced: 13 days ago
JSON representation
go test wrapper for editor
- Host: GitHub
- URL: https://github.com/kitagry/go-tw
- Owner: kitagry
- License: mit
- Created: 2023-01-15T06:09:16.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-15T06:14:32.000Z (almost 2 years ago)
- Last Synced: 2024-06-20T14:08:01.244Z (5 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## go-tw
normal output
```bash
$ go test ./... (raspi/kube-system)
? github.com/kitagry/repository [no test files]
--- FAIL: TestYourMethod (0.00s)
--- FAIL: TestYourMethod/run_a (0.00s)
huga_test.go:209: error message
--- FAIL: TestYourMethod/run_b (0.00s)
huga_test.go:209: error message
FAIL
FAIL github.com/kitagry/repository/hoge 0.006s
FAIL
```go-tw output
```bash
$ go-tw ./... (raspi/kube-system)
? github.com/kitagry/repository [no test files]
--- FAIL: TestYourMethod (0.00s)
--- FAIL: TestYourMethod/run_a (0.00s)
/home/path/to/repository/hoge/huga_test.go:209: error message
--- FAIL: TestYourMethod/run_b (0.00s)
/home/path/to/repository/hoge/huga_test.go:209: error message
FAIL
FAIL github.com/kitagry/repository/hoge 0.006s
FAIL
```diff
```diff
$ go-tw ./... (raspi/kube-system)
? github.com/kitagry/repository [no test files]
--- FAIL: TestYourMethod (0.00s)
--- FAIL: TestYourMethod/run_a (0.00s)
- huga_test.go:209: error message
+ /home/path/to/repository/hoge/huga_test.go:209: error message
--- FAIL: TestYourMethod/run_b (0.00s)
- huga_test.go:209: error message
+ /home/path/to/repository/hoge/huga_test.go:209: error message
FAIL
FAIL github.com/kitagry/repository/hoge 0.006s
FAIL
```