summaryrefslogtreecommitdiff
path: root/client/src/test/index.ts
blob: 7fedf55f3cb6c37e248e030228411aade93451a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* --------------------------------------------------------------------------------------------
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for license information.
 * ------------------------------------------------------------------------------------------ */
'use strict';

import * as testRunner from 'vscode/lib/testrunner';

testRunner.configure({
    ui: 'bdd',
    useColors: true,
    timeout: 100000
});

module.exports = testRunner;