Skip to content

Commit 9f3f4de

Browse files
committed
Add a failing test
1 parent 1ae6a3f commit 9f3f4de

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
describe("Slack Webhook Test", () => {
2+
it("should deliberately fail to test Slack notifications", () => {
3+
// This test is designed to fail to trigger the Slack webhook.
4+
expect(true).toBe(false)
5+
})
6+
7+
it("should pass to show mixed results", () => {
8+
expect(1 + 1).toBe(2)
9+
})
10+
})

0 commit comments

Comments
 (0)