We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Testing #196332
The advanced defineConfig is missing a comma after ui: 'tdd'. Should be:
ui: 'tdd'
// .vscode-test.js const { defineConfig } = require('@vscode/test-cli'); module.exports = defineConfig([ { label: 'unitTests', files: 'out/test/**/*.test.js', version: 'insiders', workspaceFolder: './sampleWorkspace', mocha: { ui: 'tdd', timeout: 20000, }, }, // you can specify additional test configurations, too ]);
The text was updated successfully, but these errors were encountered:
Fixed in the docs repo
Sorry, something went wrong.
connor4312
No branches or pull requests
Testing #196332
The advanced defineConfig is missing a comma after
ui: 'tdd'
. Should be:The text was updated successfully, but these errors were encountered: