LSP-client-example

Форк
0
27 строк · 1023.0 Байт
1
/*---------------------------------------------------------------------------------------------
2
 *  Copyright (c) Microsoft Corporation. All rights reserved.
3
 *  Licensed under the MIT License. See License.txt in the project root for license information.
4
 *--------------------------------------------------------------------------------------------*/
5
import * as path from 'path';
6

7
import { runTests } from '@vscode/test-electron';
8

9
async function main() {
10
	try {
11
		// The folder containing the Extension Manifest package.json
12
		// Passed to `--extensionDevelopmentPath`
13
		const extensionDevelopmentPath = path.resolve(__dirname, '../../../');
14

15
		// The path to test runner
16
		// Passed to --extensionTestsPath
17
		const extensionTestsPath = path.resolve(__dirname, './index');
18

19
		// Download VS Code, unzip it and run the integration test
20
		await runTests({ extensionDevelopmentPath, extensionTestsPath });
21
	} catch (err) {
22
		console.error('Failed to run tests');
23
		process.exit(1);
24
	}
25
}
26

27
main();
28

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.