#!/usr/bin/env node
const shell = require('shelljs');
shell.set('-e');
shell.set('+v');
const path = require('path');
shell.exec(
`cross-env CODE_EXTENSIONS_PATH='${path.join(
__dirname,
'..',
'packages'
)}' node ./node_modules/vscode/bin/test`
);