Mind_Reader/src/test/runTest.ts
Jake Grossman d105544596
Integrate Parser (#4)
Integrate parser
2021-10-26 12:48:04 -05:00

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();