- 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
11 lines
153 B
Go
11 lines
153 B
Go
package blackout
|
|
|
|
import "testing"
|
|
|
|
func TestDisabledByDefault(t *testing.T) {
|
|
t.Parallel()
|
|
if Enabled() {
|
|
t.Fatal("blackout should start off")
|
|
}
|
|
}
|