This commit is contained in:
Kamil Pajdzik 2019-01-11 12:15:37 -08:00
Родитель 319701134b
Коммит 2c8e8cf6c2
2 изменённых файлов: 3 добавлений и 3 удалений

4
runtime/ms-rest-azure/.vscode/launch.json поставляемый
Просмотреть файл

@ -5,7 +5,7 @@
"type": "node", "type": "node",
"request": "launch", "request": "launch",
"name": "Mocha All", "name": "Mocha All",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "program": "${workspaceFolder}/../../node_modules/mocha/bin/_mocha",
"args": [ "args": [
"--timeout", "--timeout",
"999999", "999999",
@ -19,7 +19,7 @@
"type": "node", "type": "node",
"request": "launch", "request": "launch",
"name": "Mocha Current File", "name": "Mocha Current File",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "program": "${workspaceFolder}/../../node_modules/mocha/bin/_mocha",
"args": [ "args": [
"--timeout", "--timeout",
"999999", "999999",

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

@ -31,7 +31,7 @@ describe('MSI App Service Authentication', function () {
if (!error) { if (!error) {
interceptor.reply(200, response); interceptor.reply(200, response);
} else { } else {
interceptor.replyWithError(error); interceptor.reply(400, error);
} }
} }