diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/_props.scss | 10 | ||||
-rw-r--r-- | test/test.js | 4 |
2 files changed, 12 insertions, 2 deletions
diff --git a/test/_props.scss b/test/_props.scss index d8b550b..1d64080 100644 --- a/test/_props.scss +++ b/test/_props.scss | |||
@@ -240,6 +240,16 @@ | |||
240 | @include assert-equal(props.get(--primary --text), var(--buttons--primary--text), 'Get via namespace "buttons" --primary --text'); | 240 | @include assert-equal(props.get(--primary --text), var(--buttons--primary--text), 'Get via namespace "buttons" --primary --text'); |
241 | @include assert-equal(props.get(--secondary --text, $default: false), var(--buttons--secondary--text, false), 'Get via namespace "buttons" --secondary --text with default'); | 241 | @include assert-equal(props.get(--secondary --text, $default: false), var(--buttons--secondary--text, false), 'Get via namespace "buttons" --secondary --text with default'); |
242 | } | 242 | } |
243 | @include assert-equal(props.get(--buttons), ( | ||
244 | --primary: ( | ||
245 | --background: var(--buttons--primary--background), | ||
246 | --text: var(--buttons--primary--text) | ||
247 | ), | ||
248 | --default: ( | ||
249 | --background: var(--buttons--default--background), | ||
250 | --text: var(--buttons--default--text) | ||
251 | ) | ||
252 | ), 'Get --buttons recursively'); | ||
243 | 253 | ||
244 | @include assert-equal(props.clear(), null, 'Delete default tree'); | 254 | @include assert-equal(props.clear(), null, 'Delete default tree'); |
245 | } | 255 | } |
diff --git a/test/test.js b/test/test.js index 94d16da..cce331c 100644 --- a/test/test.js +++ b/test/test.js | |||
@@ -1,4 +1,4 @@ | |||
1 | const path = require("path"); | 1 | const path = require("path"); |
2 | const sassTrue = require("sass-true"); | 2 | const sassTrue = require("sass-true"); |
3 | 3 | ||
4 | sassTrue.runSass({ file: path.join(__dirname, "test.scss") }, { describe, it }); | 4 | sassTrue.runSass({ describe, it }, path.join(__dirname, "test.scss")); |