Instead of running the integration tests from the `out` directory, this will run the integration tests from the `src` directory using `ts-jest`. Unfortunately, we are not able to use TypeScript files for the `jest-runner-vscode` configuration since `cosmiconfig` (the package that handles the configuration loading for `jest-runner-vscode`) doesn't support loading TypeScript files by default.
16 lines
436 B
JavaScript
16 lines
436 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} */
|
|
module.exports = {
|
|
projects: [
|
|
"<rootDir>/src/view",
|
|
"<rootDir>/test",
|
|
"<rootDir>/src/vscode-tests/cli-integration",
|
|
"<rootDir>/src/vscode-tests/no-workspace",
|
|
"<rootDir>/src/vscode-tests/minimal-workspace",
|
|
],
|
|
};
|