rust/tests/rustdoc-gui/utils.goml
2024-04-05 21:38:55 +02:00

12 lines
339 B
Plaintext

// This file contains code to be re-used by other tests.
define-function: (
"switch-theme",
[theme],
block {
// Set the theme.
set-local-storage: {"rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false"}
// We reload the page so the local storage settings are being used.
reload:
},
)