update passing tests

This commit is contained in:
Connor Skees 2020-07-03 15:17:43 -04:00
parent d144b7fc52
commit 0e1ea87627
3 changed files with 5 additions and 4 deletions

View File

@ -9,6 +9,7 @@
- add support for splats, e.g. `rgba([1, 2, 3, 4]...)` - add support for splats, e.g. `rgba([1, 2, 3, 4]...)`
- resolve a number of parsing bugs for `@for`, variable declarations, selectors, and maps - resolve a number of parsing bugs for `@for`, variable declarations, selectors, and maps
- various optimizations, improving performance by around 10% (and resolving performance regressions due to `@extend`) - various optimizations, improving performance by around 10% (and resolving performance regressions due to `@extend`)
- completely rewrite how styles are evaluated
# 0.9.1 # 0.9.1

View File

@ -75,9 +75,9 @@ cargo b --release
These numbers come from a default run of the Sass specification as shown above. These numbers come from a default run of the Sass specification as shown above.
``` ```
2020-07-02 2020-07-03
PASSING: 2840 PASSING: 2867
FAILING: 2253 FAILING: 2226
TOTAL: 5093 TOTAL: 5093
``` ```

View File

@ -5,7 +5,7 @@ Spec progress as of 2020-07-03:
| Passing | Failing | Total | | Passing | Failing | Total |
|---------|---------|-------| |---------|---------|-------|
| 2862 | 2231 | 5093 | | 2867 | 2226 | 5093 |
## Use as library ## Use as library
``` ```