We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea61c8a commit 80ddf99Copy full SHA for 80ddf99
1 file changed
test/integration/clusters_test.go
@@ -778,3 +778,11 @@ func TestClusterPost_WrongKind(t *testing.T) {
778
Expect(ok).To(BeTrue())
779
Expect(detail).To(ContainSubstring("kind must be 'Cluster'"))
780
}
781
+
782
+// TestClusterPanicFailure is a temporary test to verify that Prow correctly
783
+// reports integration test failures when a panic occurs during test execution.
784
+// This test should be removed after confirming the behavior.
785
+func TestClusterPanicFailure(t *testing.T) {
786
+ _, _ = test.RegisterIntegration(t)
787
+ panic("intentional panic to test Prow failure reporting")
788
+}
0 commit comments