test: intentionally failing test for QA gate verification (FN-287)
Some checks failed
QA Gate (P0/P1) / Test affected app (pull_request) Has been cancelled

This commit is contained in:
Fusion
2026-05-13 07:04:27 +00:00
parent 3dd4dc2f77
commit 2b863e23b8

View File

@@ -980,3 +980,15 @@ describe("subscription status display", () => {
expect(screen.getByText("subscription.cancelSubscription")).toBeInTheDocument();
});
});
// ═══════════════════════════════════════════════════════════════════════════════
// QA GATE VERIFICATION — remove this block after CI is confirmed working (FN-287)
// ═══════════════════════════════════════════════════════════════════════════════
describe("qa-gate verification (intentionally failing)", () => {
it("REMOVE AFTER VERIFICATION: always fails to confirm CI gate blocks merge", () => {
// This assertion is intentionally wrong. Its purpose is to make CI fail
// so QA Lead can confirm the gate is working before removing it.
expect(true).toBe(false);
});
});