test(coderd/x/chatd): skip signal wake send flake (#25633)

Skips `TestSignalWakeSendMessage`, which flakes because the current
chatd control notification flow can deliver stale status notifications
after a new processing run starts.

This mirrors the existing CODAGT-353 skips for the same
stale-notification class and leaves the deterministic fix to that
notification-flow refactor.

Refs
https://linear.app/codercom/issue/ENG-2727/flake-testsignalwakesendmessage

> Generated by Coder Agents on behalf of @ibetitsmike.
This commit is contained in:
Michael Suchacz
2026-05-22 23:10:31 +00:00
committed by GitHub
parent a8962274fa
commit 6739542875
+3
View File
@@ -8372,6 +8372,9 @@ func TestSignalWakeImmediateAcquisition(t *testing.T) {
// triggers immediate processing via signalWake.
func TestSignalWakeSendMessage(t *testing.T) {
t.Parallel()
// TODO(CODAGT-353): Re-enable this after the chatd notification
// flow can distinguish stale status notifications from interrupts.
t.Skip("skipped until chatd notification flow refactor handles stale control notifications")
db, ps := dbtestutil.NewDB(t)
ctx := testutil.Context(t, testutil.WaitSuperLong)