sass / migrator

Tool for migrating stylesheets to new Sass versions
MIT License
89 stars 11 forks source link

Run Dart VM tests with snapshot #73

Closed jathak closed 5 years ago

jathak commented 5 years ago

Similar to how the Node tests require pub run grinder js to be run, the Dart VM tests now require pub run grinder app-snapshot to be run, drastically decreasing the amount of time it takes to run all of the tests.

The new snapshot tag is necessary for these tests now since filtering with -t node will still cause the check for the snapshot's existence to be run, but -x snapshot won't.

jathak commented 5 years ago

Okay, I changed it to only use the snapshot if it exists and is up-to-date and to fallback to running directly from source if not.