Files
go-worm/lib/blackout/blackout_test.go
kato 149fcde379 feat(agent): add screen blackout feature
- Physical displays blanked via overlay
- Remote video and input keep working
- Exclude overlay from screen capture
- Add blackout API and UI toggle
- Wire flag through capture protocol
2026-09-02 13:32:21 +03:00

11 lines
153 B
Go

package blackout
import "testing"
func TestDisabledByDefault(t *testing.T) {
t.Parallel()
if Enabled() {
t.Fatal("blackout should start off")
}
}