; Allow a tab-bar test on MS-Windows

* test/lisp/tab-bar-tests.el (tab-bar-tests-quit-restore-window):
Allow this test on MS-Windows in interactive sessions.
This commit is contained in:
Eli Zaretskii 2025-04-18 08:11:47 +03:00
parent f728aa72c0
commit 58ff101380

View file

@ -52,7 +52,9 @@
(tab-bar-tabs-set nil))
(ert-deftest tab-bar-tests-quit-restore-window ()
(skip-unless (and (eq system-type 'gnu/linux) (getenv "TERM")))
(skip-unless (or (and (eq system-type 'gnu/linux) (getenv "TERM"))
(and (not noninteractive)
(eq system-type 'windows-nt))))
(let* ((frame-params (when noninteractive
'((window-system . nil)
(tty-type . "linux"))))