Skip to content

Commit 4d04fc1

Browse files
committed
Fix AppVeyor tests.
We aren't running Node tests here until dart-lang/sdk#30098 lands.
1 parent 3b36c5a commit 4d04fc1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

appveyor.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ install:
1717
- ps: >-
1818
If ($env:NODE -eq "true") {
1919
Install-Product node ''
20+
$env:SASS_MINIFY_JS = "false"
21+
pub run grinder npm_package
2022
}
2123
24+
# Don't run Node tests on Windows until dart-lang/sdk#30098 lands.
2225
test_script:
2326
- ps: >-
2427
If ($env:NODE -eq "true") {
25-
pub run test -t node
28+
pub run test -p vm -t node
2629
} Else {
2730
pub run test -x node
2831
}

0 commit comments

Comments
 (0)