We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6343235 commit cdce9a7Copy full SHA for cdce9a7
tests/gui/sidebar.goml
@@ -43,8 +43,14 @@ define-function: (
43
},
44
)
45
46
+// Since the sidebar is visible, we should be able to find this text.
47
+assert-find-text: ("3.9. Links and Horizontal Rule", {"case-sensitive": true})
48
call-function: ("hide-sidebar", {})
49
+// Text should not be findeable anymore since the sidebar is collapsed.
50
+assert-find-text-false: ("3.9. Links and Horizontal Rule", {"case-sensitive": true})
51
call-function: ("show-sidebar", {})
52
+// We should be able to find this text again.
53
54
55
// We now test on smaller width to ensure that the sidebar is collapsed by default.
56
set-window-size: (900, 600)
0 commit comments