UNPKG

688 BCSSView Raw
1/* config: (a: true, b: false, c: (z: true), d: (x: (y: (z: true)))) */
2/* PASS: -restyle--is-logging-enabled-js('a') should be `true` */
3/* PASS: -restyle--is-logging-enabled-js('a:z') should be `true` */
4/* PASS: -restyle--is-logging-enabled-js('b') should be `false` */
5/* PASS: -restyle--is-logging-enabled-js('b:z') should be `false` */
6/* PASS: -restyle--is-logging-enabled-js('c') should be `false` */
7/* PASS: -restyle--is-logging-enabled-js('c:z') should be `true` */
8/* PASS: -restyle--is-logging-enabled-js('c:z:y:z') should be `true` */
9/* PASS: -restyle--is-logging-enabled-js('d') should be `false` */
10/* PASS: -restyle--is-logging-enabled-js('d:x:y:z') should be `true` */