We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4add1a commit a39a5d7Copy full SHA for a39a5d7
util/tap/Makefile
@@ -1,4 +1,4 @@
1
-TESTS = auto check known writer
+TESTS = auto check known failing writer
2
GOPATH = $(CURDIR)/gopath
3
4
.PHONY: $(TESTS)
util/tap/test/failing/main.go
@@ -0,0 +1,9 @@
+package main
+
+import "github.com/mndrix/tap-go"
5
+func main() {
6
+ t := tap.New()
7
+ t.Header(1)
8
+ t.Ok(false, "first test")
9
+}
0 commit comments