test: Enable workspaces when doing tests, b=(no-bug), c=tests, workspaces

This commit is contained in:
Mr. M
2025-04-29 18:27:00 +02:00
parent 4f49ff3290
commit 79e731e89c
4 changed files with 15 additions and 10 deletions

View File

@@ -678,7 +678,7 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature {
get workspaceEnabled() {
if (typeof this._workspaceEnabled === 'undefined') {
this._workspaceEnabled = !gZenUIManager.testingEnabled && this.shouldHaveWorkspaces;
this._workspaceEnabled = this.shouldHaveWorkspaces;
}
return this._workspaceEnabled && !window.closed;
}