Skip to content

Commit

Permalink
No more verbose logs in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danawoodman committed Feb 26, 2024
1 parent 6abee99 commit 5b51e60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ test:

.PHONY: test-e2e
test-e2e:
@go test -v ./test/...
@go test ./test/...

.PHONY: test-unit
test-unit:
@go test -v ./internal/...
@go test ./internal/...

.PHONY: watch-test
watch-test:
Expand Down
2 changes: 0 additions & 2 deletions test/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ func TestCng(t *testing.T) {
{
name: "ignores default excluded dirs",
pattern: "*.txt",
exclude: "*.md",
steps: func(write func(string)) {
write(".git/foo.txt")
write("node_modules/foo.txt")
Expand Down Expand Up @@ -119,7 +118,6 @@ func TestCng(t *testing.T) {
// Wait for the process to exit
if err := cmd.Wait(); err != nil {
exiterr, ok := err.(*exec.ExitError)
// assert.NoError(t, err)
assert.True(t, ok)
assert.NotNil(t, exiterr)

Expand Down

0 comments on commit 5b51e60

Please sign in to comment.