This commit is contained in:
Steve Faulkner 2019-07-19 23:07:57 -05:00 коммит произвёл GitHub
Родитель 04fe0923a0
Коммит 8bcda5e447
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 25 добавлений и 20 удалений

Просмотреть файл

@ -60,10 +60,15 @@ jobs:
- script: npm run build
displayName: "npm run build"
- bash: npm run test -- --forbid-only
- bash: npm run test -- --forbid-only --reporter mocha-junit-reporter
displayName: "npm test"
env:
MOCHA_TIMEOUT: 100000
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: JUnit
testResultsFiles: '**/test-results.xml'
- bash: npm run test-consumer
displayName: "TypeScript consumer tests"

36
package-lock.json сгенерированный
Просмотреть файл

@ -360,6 +360,12 @@
"es6-promisify": "^5.0.0"
}
},
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
"dev": true
},
"anymatch": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
@ -3408,9 +3414,9 @@
}
},
"mocha-junit-reporter": {
"version": "1.17.0",
"resolved": "https://registry.npmjs.org/mocha-junit-reporter/-/mocha-junit-reporter-1.17.0.tgz",
"integrity": "sha1-LlFJ7UD8XS48px5C21qx/snG2Fw=",
"version": "1.23.1",
"resolved": "https://registry.npmjs.org/mocha-junit-reporter/-/mocha-junit-reporter-1.23.1.tgz",
"integrity": "sha512-qeDvKlZyAH2YJE1vhryvjUQ06t2hcnwwu4k5Ddwn0GQINhgEYFhlGM0DwYCVUHq5cuo32qAW6HDsTHt7zz99Ng==",
"dev": true,
"requires": {
"debug": "^2.2.0",
@ -3420,12 +3426,6 @@
"xml": "^1.0.0"
},
"dependencies": {
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
"dev": true
},
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
@ -3434,15 +3434,6 @@
"requires": {
"ms": "2.0.0"
}
},
"strip-ansi": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"dev": true,
"requires": {
"ansi-regex": "^3.0.0"
}
}
}
},
@ -4523,6 +4514,15 @@
"safe-buffer": "~5.1.0"
}
},
"strip-ansi": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"dev": true,
"requires": {
"ansi-regex": "^3.0.0"
}
},
"strip-eof": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",

Просмотреть файл

@ -65,7 +65,7 @@
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.15.0",
"mocha-junit-reporter": "1.23.1",
"mocha-multi-reporters": "^1.1.6",
"prettier": "1.14.3",
"proxy-agent": "3.0.3",