mirror of
https://github.com/VSCodeVim/Vim.git
synced 2024-11-10 22:29:25 +03:00
83e135221c
- Stop docker tests from sending the entire app as context to the daemon when building the image - Add '--rm' to the container run command to remove the container when done with the tests - Fix paths to extensionDevelopmentPath and testsRoot
25 lines
699 B
TypeScript
25 lines
699 B
TypeScript
import * as path from 'path';
|
|
|
|
import { runTests } from 'vscode-test';
|
|
|
|
async function main() {
|
|
try {
|
|
// The folder containing the Extension Manifest package.json
|
|
// Passed to `--extensionDevelopmentPath`
|
|
const extensionDevelopmentPath = path.resolve(__dirname, '../../');
|
|
|
|
// The path to the extension test runner script
|
|
// Passed to --extensionTestsPath
|
|
const extensionTestsPath = path.resolve(__dirname, './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();
|