@elliemae/pui-cli 7.14.0 → 7.14.1

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.
@@ -92,7 +92,11 @@ const jestConfig = {
92
92
  url: `http://localhost:3111${basePath}`,
93
93
  },
94
94
  testEnvironment: 'jsdom',
95
- watchPlugins: ['jest-watch-typeahead/filename', 'jest-watch-typeahead/testname'],
95
+ watchPlugins: [
96
+ 'jest-watch-typeahead/filename',
97
+ 'jest-watch-typeahead/testname',
98
+ ],
99
+ testTimeout: 5000,
96
100
  };
97
101
 
98
102
  if (isReactModule && jestConfig.setupFilesAfterEnv)
@@ -45,7 +45,6 @@ console.error = (...args) => {
45
45
  };
46
46
  if (expect)
47
47
  expect.extend(import_jest_axe.default.toHaveNoViolations);
48
- jest.setTimeout(Number.parseInt(process.env.TEST_TIMEOUT, 10) || 6e4);
49
48
  const addElementToBody = (element) => {
50
49
  const documentEle = (window || {}).document;
51
50
  if (!documentEle)
@@ -92,7 +92,11 @@ const jestConfig = {
92
92
  url: `http://localhost:3111${basePath}`,
93
93
  },
94
94
  testEnvironment: 'jsdom',
95
- watchPlugins: ['jest-watch-typeahead/filename', 'jest-watch-typeahead/testname'],
95
+ watchPlugins: [
96
+ 'jest-watch-typeahead/filename',
97
+ 'jest-watch-typeahead/testname',
98
+ ],
99
+ testTimeout: 5000,
96
100
  };
97
101
 
98
102
  if (isReactModule && jestConfig.setupFilesAfterEnv)
@@ -26,7 +26,6 @@ console.error = (...args) => {
26
26
  };
27
27
  if (expect)
28
28
  expect.extend(jestAxe.toHaveNoViolations);
29
- jest.setTimeout(Number.parseInt(process.env.TEST_TIMEOUT, 10) || 6e4);
30
29
  const addElementToBody = (element) => {
31
30
  const documentEle = (window || {}).document;
32
31
  if (!documentEle)
@@ -36,4 +36,5 @@ export namespace jestConfig {
36
36
  }
37
37
  const testEnvironment: string;
38
38
  const watchPlugins: string[];
39
+ const testTimeout: number;
39
40
  }
@@ -36,4 +36,5 @@ export const jestNodeConfig: {
36
36
  url: string;
37
37
  };
38
38
  watchPlugins: string[];
39
+ testTimeout: number;
39
40
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-cli",
3
- "version": "7.14.0",
3
+ "version": "7.14.1",
4
4
  "description": "ICE MT UI Platform CLI",
5
5
  "sideEffects": false,
6
6
  "type": "module",