File tree Expand file tree Collapse file tree 2 files changed +19
-13
lines changed Expand file tree Collapse file tree 2 files changed +19
-13
lines changed Original file line number Diff line number Diff line change 1+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2+
3+ exports [` should test the 'scriptingVariants' plugin 1` ] = `
4+ "
5+ @media (scripting: none) {
6+ .noscript \\:flex {
7+ display: flex ;
8+ }
9+ }
10+
11+ @media (scripting: enabled) {
12+ .scripting \\:flex {
13+ display: flex ;
14+ }
15+ }
16+ "
17+ ` ;
Original file line number Diff line number Diff line change 1- import { css , quickVariantPluginTest } from '../../util/run'
1+ import { quickVariantPluginTest } from '../../util/run'
22
3- quickVariantPluginTest ( 'scriptingVariants' ) . toMatchFormattedCss ( css `
4- @media (scripting : none) {
5- .noscript\:flex {
6- display : flex;
7- }
8- }
9- @media (scripting : enabled) {
10- .scripting\:flex {
11- display : flex;
12- }
13- }
14- ` )
3+ quickVariantPluginTest ( 'scriptingVariants' ) . toMatchSnapshot ( )
You can’t perform that action at this time.
0 commit comments