@nx/jest 17.2.0-beta.11 → 17.2.0-beta.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/jest",
3
- "version": "17.2.0-beta.11",
3
+ "version": "17.2.0-beta.14",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Jest contains executors and generators allowing your workspace to use the powerful Jest testing capabilities.",
6
6
  "repository": {
@@ -44,9 +44,9 @@
44
44
  "jest-util": "^29.4.1",
45
45
  "resolve.exports": "1.1.0",
46
46
  "tslib": "^2.3.0",
47
- "@nx/devkit": "17.2.0-beta.11",
48
- "@nx/js": "17.2.0-beta.11",
49
- "@nrwl/jest": "17.2.0-beta.11"
47
+ "@nx/devkit": "17.2.0-beta.14",
48
+ "@nx/js": "17.2.0-beta.14",
49
+ "@nrwl/jest": "17.2.0-beta.14"
50
50
  },
51
51
  "publishConfig": {
52
52
  "access": "public"
@@ -10,11 +10,9 @@ const path_1 = require("path");
10
10
  const devkit_1 = require("@nx/devkit");
11
11
  const summary_1 = require("./summary");
12
12
  const fs_1 = require("fs");
13
- const js_1 = require("@nx/js");
14
13
  process.env.NODE_ENV ??= 'test';
15
14
  async function jestExecutor(options, context) {
16
15
  const config = await jestConfigParser(options, context);
17
- process.env['TS_NODE_PROJECT'] ??= (0, js_1.getRootTsConfigPath)();
18
16
  const { results } = await (0, jest_1.runCLI)(config, [options.jestConfig]);
19
17
  return { success: results.success };
20
18
  }