mirror of
https://github.com/We-Dont-Byte/Mind_Reader.git
synced 2025-02-04 10:38:42 +00:00
25 lines
701 B
TypeScript
25 lines
701 B
TypeScript
import * as path from 'path';
|
|
|
|
import { runTests } from '@vscode/test-electron';
|
|
|
|
async function main() {
|
|
try {
|
|
// The folder containing package.json
|
|
// Passed to `--extensionDevelopmentPath`
|
|
const extensionDevelopmentPath: string = path.resolve(__dirname, '../../');
|
|
|
|
// The path to the test runner script
|
|
// Passed to `--extensionTestsPath`
|
|
const extensionTestsPath: string = path.resolve(__dirname, './suites/index');
|
|
|
|
// Download VS Code, unzip it and run the integration test
|
|
await runTests({ extensionDevelopmentPath, extensionTestsPath });
|
|
} catch (err) {
|
|
console.error(err);
|
|
console.error('Failed to run tests');
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
main();
|