Increase timeout for a few tests

This commit is contained in:
Eric Jizba 2018-01-17 09:02:37 -08:00
Родитель b8516f32d2
Коммит 767808b70b
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -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');