We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 875c42a commit 3392d2aCopy full SHA for 3392d2a
appveyor.yml
@@ -39,8 +39,10 @@ install:
39
40
test_script:
41
- cmd: lein test
42
- # surprisingly this is the only way to have the output shown in Appveyor
43
- - cmd: powershell -noninteractive -noprofile -command .\script\test.ps1
+ - cmd: powershell -noninteractive -noprofile -command .\script\test.ps1 > test-out.txt
+ - cmd: type test-out.txt
44
+ # Since tests are currently only run in 1 JavaScript environment (SpiderMonkey), look for exactly one count of "0 failures, 0 errors."
45
+ - cmd: powershell -noninteractive -noprofile -command if (-not ((sls -Pattern '0 failures, 0 errors.' -SimpleMatch test-out.txt).count -eq 1)) { exit 1 }
46
47
# Don't actually build (MSBuild).
48
build: off
0 commit comments