We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d4aadf commit 9b02591Copy full SHA for 9b02591
tests/index.test.js
@@ -6,6 +6,9 @@ describe("YouTube Music App", () => {
6
7
const win = app.browserWindow;
8
9
+ const isMenuVisible = await win.isMenuBarVisible();
10
+ expect(isMenuVisible).toBe(true);
11
+
12
const isVisible = await win.isVisible();
13
expect(isVisible).toBe(true);
14
0 commit comments