We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ae6a3f commit 9f3f4deCopy full SHA for 9f3f4de
src/utils/__tests__/slack-webhook-test.spec.ts
@@ -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