Firefox-UI-Fix/__tests__/option.test.scss
2021-12-27 15:36:37 +09:00

23 lines
472 B
SCSS

@use 'true' as *;
@use "../src/utils/option";
@include test-module("If exist pref [mx]") {
@include test("simple") {
@include assert {
@include output {
@include option.Option("userChrome.tab.photon") {
body {
font-size: 16px;
}
}
}
@include expect {
@supports -moz-bool-pref("userChrome.tab.photon") {
body {
font-size: 16px;
}
}
}
}
}
}