Change test timeout for extension unit tests to 10sec (#8848)

This commit is contained in:
Charles Gagnon
2020-01-08 13:49:34 -08:00
committed by GitHub
parent 0c47a4486b
commit 7ecb6b4427
11 changed files with 11 additions and 11 deletions

View File

@@ -11,7 +11,7 @@ const suite = 'admin-tool-ext-win Extension Tests';
const options: any = { const options: any = {
ui: 'bdd', ui: 'bdd',
useColors: true, useColors: true,
timeout: 600000 timeout: 10000
}; };
// set relevant mocha options from the environment // set relevant mocha options from the environment

View File

@@ -11,7 +11,7 @@ const suite = 'agent Extension Tests';
const options: any = { const options: any = {
ui: 'bdd', ui: 'bdd',
useColors: true, useColors: true,
timeout: 600000 timeout: 10000
}; };
// set relevant mocha options from the environment // set relevant mocha options from the environment

View File

@@ -11,7 +11,7 @@ const suite = 'azurecore Extension Tests';
const options: any = { const options: any = {
ui: 'bdd', ui: 'bdd',
useColors: true, useColors: true,
timeout: 60000 timeout: 10000
}; };
// set relevant mocha options from the environment // set relevant mocha options from the environment

View File

@@ -11,7 +11,7 @@ const suite = 'cms Extension Tests';
const options: any = { const options: any = {
ui: 'bdd', ui: 'bdd',
useColors: true, useColors: true,
timeout: 60000 timeout: 10000
}; };
// set relevant mocha options from the environment // set relevant mocha options from the environment

View File

@@ -11,7 +11,7 @@ const suite = 'dacpac Extension Tests';
const testOptions: any = { const testOptions: any = {
ui: 'bdd', ui: 'bdd',
useColors: true, useColors: true,
timeout: 60000 timeout: 10000
}; };
// set relevant mocha options from the environment // set relevant mocha options from the environment

View File

@@ -12,7 +12,7 @@ const suite = getSuiteType();
const options: any = { const options: any = {
ui: 'tdd', ui: 'tdd',
useColors: true, useColors: true,
timeout: 600000 // 600 seconds timeout: 10000
}; };
if (suite === SuiteType.Stress) { if (suite === SuiteType.Stress) {

View File

@@ -11,7 +11,7 @@ const suite = 'machine learning Extension Tests';
const options: any = { const options: any = {
ui: 'bdd', ui: 'bdd',
useColors: true, useColors: true,
timeout: 600000 timeout: 10000
}; };
// set relevant mocha options from the environment // set relevant mocha options from the environment

View File

@@ -11,7 +11,7 @@ const suite = 'notebook Extension Integration Tests';
const options: any = { const options: any = {
ui: 'bdd', ui: 'bdd',
useColors: true, useColors: true,
timeout: 600000 timeout: 10000
}; };
// set relevant mocha options from the environment // set relevant mocha options from the environment

View File

@@ -11,7 +11,7 @@ const suite = 'notebook Extension Tests';
const options: any = { const options: any = {
ui: 'bdd', ui: 'bdd',
useColors: true, useColors: true,
timeout: 600000 timeout: 10000
}; };
// set relevant mocha options from the environment // set relevant mocha options from the environment

View File

@@ -11,7 +11,7 @@ const suite = 'resource-deployment Extension Tests';
const testOptions: any = { const testOptions: any = {
ui: 'tdd', ui: 'tdd',
useColors: true, useColors: true,
timeout: 60000 timeout: 10000
}; };
// set relevant mocha options from the environment // set relevant mocha options from the environment

View File

@@ -11,7 +11,7 @@ const suite = 'schema-compare Extension Tests';
const options: any = { const options: any = {
ui: 'bdd', ui: 'bdd',
useColors: true, useColors: true,
timeout: 60000 timeout: 10000
}; };
// set relevant mocha options from the environment // set relevant mocha options from the environment