Increase timeout for a few tests
This commit is contained in:
Родитель
b8516f32d2
Коммит
767808b70b
|
@ -23,7 +23,7 @@ class CSharpFunctionTester extends FunctionTesterBase {
|
|||
|
||||
// tslint:disable-next-line:no-function-expression
|
||||
suite('Create C# Function Tests', async function (this: ISuiteCallbackContext): Promise<void> {
|
||||
this.timeout(10 * 1000);
|
||||
this.timeout(20 * 1000);
|
||||
|
||||
const csTester: CSharpFunctionTester = new CSharpFunctionTester();
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ import { TestUI } from './TestUI';
|
|||
|
||||
// tslint:disable-next-line:no-function-expression
|
||||
suite('Create New Project Tests', async function (this: ISuiteCallbackContext): Promise<void> {
|
||||
this.timeout(15 * 1000);
|
||||
this.timeout(30 * 1000);
|
||||
|
||||
const testFolderPath: string = path.join(os.tmpdir(), `azFunc.createNewProjectTests${fsUtil.getRandomHexString()}`);
|
||||
const outputChannel: vscode.OutputChannel = vscode.window.createOutputChannel('Azure Functions Test');
|
||||
|
|
Загрузка…
Ссылка в новой задаче