@elliemae/pui-cli 8.51.3 → 8.52.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.
@@ -94,3 +94,6 @@ global.it = (name, fn, timeout = void 0) => {
94
94
  };
95
95
  global.it.skip = originalTest.skip;
96
96
  global.it.only = originalTest.only;
97
+ if (!global.performance.getEntriesByType) {
98
+ global.performance.getEntriesByType = jest.fn(() => []);
99
+ }
@@ -71,3 +71,6 @@ global.it = (name, fn, timeout = void 0) => {
71
71
  };
72
72
  global.it.skip = originalTest.skip;
73
73
  global.it.only = originalTest.only;
74
+ if (!global.performance.getEntriesByType) {
75
+ global.performance.getEntriesByType = jest.fn(() => []);
76
+ }
@@ -1,4 +1,4 @@
1
1
  export declare const getCertOptions: () => {
2
- pfx: Buffer<ArrayBufferLike>;
2
+ pfx: NonSharedBuffer;
3
3
  passphrase: string;
4
4
  };
@@ -32,7 +32,7 @@ export namespace jestConfig {
32
32
  };
33
33
  let transformIgnorePatterns: string[];
34
34
  namespace globals {
35
- let APP_CONFIG: string | Buffer<ArrayBufferLike>;
35
+ let APP_CONFIG: string | NonSharedBuffer;
36
36
  let __webpack_public_path__: string;
37
37
  }
38
38
  namespace testEnvironmentOptions {
@@ -33,7 +33,7 @@ export const jestNodeConfig: {
33
33
  '^.+\\.[jt]sx?$': any[];
34
34
  };
35
35
  globals: {
36
- APP_CONFIG: string | Buffer<ArrayBufferLike>;
36
+ APP_CONFIG: string | NonSharedBuffer;
37
37
  __webpack_public_path__: string;
38
38
  };
39
39
  testEnvironmentOptions: {
@@ -1,4 +1,4 @@
1
1
  export const basePath: string;
2
- export function getAppConfig(): "{}" | Buffer<ArrayBufferLike>;
2
+ export function getAppConfig(): "{}" | NonSharedBuffer;
3
3
  export function isTypeScriptEnabled(): boolean;
4
4
  export function isApp(): boolean;
@@ -1,4 +1,4 @@
1
1
  export declare const basePath: string;
2
2
  export declare const isApp: () => boolean;
3
3
  export declare const isHttps: () => boolean;
4
- export declare const getAppConfig: () => "{}" | Buffer<ArrayBufferLike>;
4
+ export declare const getAppConfig: () => "{}" | NonSharedBuffer;