adding tests report

This commit is contained in:
Nicolas Constant 2019-04-06 18:57:27 -04:00
parent 77f612869c
commit 5a2123f9f1
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 9 additions and 1 deletions

View File

@ -19,4 +19,12 @@ version: '{build}'
shallow_clone: true
clone_depth: 1
test_script:
- npm run dist
- npm run dist
- ps: >-
npm run test-nowatch
$wc = New-Object 'System.Net.WebClient'
Get-ChildItem . -Name -Recurse 'TESTS-*.xml' |
Foreach-Object {
$wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path $_))
}