It seems like we had some rules that disabled rules of this plugin, but we didn't actually have it installed. I've now installed it, used the recommended configuration, and removed our own disable rules. I've fixed any errors that this introduced.
18 lines
552 B
JavaScript
18 lines
552 B
JavaScript
/*
|
|
* For a detailed explanation regarding each configuration property and type check, visit:
|
|
* https://jestjs.io/docs/configuration
|
|
*/
|
|
|
|
/** @type {import('@jest/types').Config.InitialOptions} */
|
|
// eslint-disable-next-line import/no-commonjs
|
|
module.exports = {
|
|
projects: [
|
|
"<rootDir>/src/view",
|
|
"<rootDir>/test/unit-tests",
|
|
"<rootDir>/test/vscode-tests/activated-extension",
|
|
"<rootDir>/test/vscode-tests/cli-integration",
|
|
"<rootDir>/test/vscode-tests/no-workspace",
|
|
"<rootDir>/test/vscode-tests/minimal-workspace",
|
|
],
|
|
};
|