mirror of
https://github.com/any86/any-rule.git
synced 2025-07-14 15:38:58 +08:00
32 lines
1.5 KiB
JavaScript
32 lines
1.5 KiB
JavaScript
"use strict";
|
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
|
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
});
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const path = require("path");
|
|
const vscode_test_1 = require("vscode-test");
|
|
function main() {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
try {
|
|
// The folder containing the Extension Manifest package.json
|
|
// Passed to `--extensionDevelopmentPath`
|
|
const extensionDevelopmentPath = path.resolve(__dirname, '../../');
|
|
// The path to test runner
|
|
// Passed to --extensionTestsPath
|
|
const extensionTestsPath = path.resolve(__dirname, './suite/index');
|
|
// Download VS Code, unzip it and run the integration test
|
|
yield vscode_test_1.runTests({ extensionDevelopmentPath, extensionTestsPath });
|
|
}
|
|
catch (err) {
|
|
console.error('Failed to run tests');
|
|
process.exit(1);
|
|
}
|
|
});
|
|
}
|
|
main();
|
|
//# sourceMappingURL=runTest.js.map
|