Files
webhooker/internal/globals/ci_gate_probe_test.go
sneak 0fb6c81401
Some checks failed
check / check (push) Failing after 1m5s
Acceptance probe: deliberately broken test
2026-08-12 10:12:55 +00:00

10 lines
277 B
Go

package globals
import "testing"
// Scratch-branch probe: a deliberately failing test used to verify that CI
// actually executes the test stage. Never merged.
func TestCIGateRunsTests(t *testing.T) {
t.Fatal("deliberate failure: the CI gate must report this commit red")
}