2022-09-14 13:22:11 +03:00
|
|
|
/*
|
|
|
|
* For a detailed explanation regarding each configuration property and type check, visit:
|
|
|
|
* https://jestjs.io/docs/configuration
|
|
|
|
*/
|
|
|
|
|
2022-11-23 13:21:31 +03:00
|
|
|
/** @type {import('@jest/types').Config.InitialOptions} */
|
2023-12-21 19:02:31 +03:00
|
|
|
// eslint-disable-next-line import/no-commonjs
|
2022-09-14 15:14:13 +03:00
|
|
|
module.exports = {
|
2022-11-22 17:51:56 +03:00
|
|
|
projects: [
|
|
|
|
"<rootDir>/src/view",
|
2022-12-23 17:23:55 +03:00
|
|
|
"<rootDir>/test/unit-tests",
|
2023-02-08 14:52:49 +03:00
|
|
|
"<rootDir>/test/vscode-tests/activated-extension",
|
2023-01-03 13:31:38 +03:00
|
|
|
"<rootDir>/test/vscode-tests/cli-integration",
|
|
|
|
"<rootDir>/test/vscode-tests/no-workspace",
|
|
|
|
"<rootDir>/test/vscode-tests/minimal-workspace",
|
2022-11-22 17:51:56 +03:00
|
|
|
],
|
2022-09-14 13:22:11 +03:00
|
|
|
};
|