Skip to content

Commit

Permalink
fail test to check flakeguard reports
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl committed Dec 9, 2024
1 parent 6d305ea commit 7213d1a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions core/web/resolver/failtest/fail_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package failtest

import "testing"

func TestImmediateFail(t *testing.T) {
t.Fatalf("This test fails immediately.")
}

func TestPassing(t *testing.T) {
t.Log("This test passes.")
}

0 comments on commit 7213d1a

Please sign in to comment.