mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:11:06 +08:00
Fix vitest patch
This commit is contained in:
parent
941826389d
commit
f70a6b955d
@ -1,10 +1,10 @@
|
||||
diff --git a/dist/index.js b/dist/index.js
|
||||
index 974d6b26f626024fc9904908100c9ecaa54f43e1..5be2d35267e7f0525c6588758dbebe72599f88a9 100644
|
||||
index 974d6b26f626024fc9904908100c9ecaa54f43e1..5d9d92a0796e02630ccdd1174d4fd25e016d2b06 100644
|
||||
--- a/dist/index.js
|
||||
+++ b/dist/index.js
|
||||
@@ -6,31 +6,37 @@ import { processError } from '@vitest/utils/error';
|
||||
@@ -6,28 +6,35 @@ import { processError } from '@vitest/utils/error';
|
||||
import { util } from 'chai';
|
||||
|
||||
|
||||
const MATCHERS_OBJECT = Symbol.for("matchers-object");
|
||||
-const JEST_MATCHERS_OBJECT = Symbol.for("$$jest-matchers-object");
|
||||
+// Patched this symbol for storybook, so that @storybook/test can be used in a jest environment as well.
|
||||
@ -12,17 +12,14 @@ index 974d6b26f626024fc9904908100c9ecaa54f43e1..5be2d35267e7f0525c6588758dbebe72
|
||||
+const JEST_MATCHERS_OBJECT = Symbol.for("$$jest-matchers-object-storybook");
|
||||
const GLOBAL_EXPECT = Symbol.for("expect-global");
|
||||
const ASYMMETRIC_MATCHERS_OBJECT = Symbol.for("asymmetric-matchers-object");
|
||||
|
||||
|
||||
if (!Object.prototype.hasOwnProperty.call(globalThis, MATCHERS_OBJECT)) {
|
||||
const globalState = /* @__PURE__ */ new WeakMap();
|
||||
- const matchers = /* @__PURE__ */ Object.create(null);
|
||||
const assymetricMatchers = /* @__PURE__ */ Object.create(null);
|
||||
- const assymetricMatchers = /* @__PURE__ */ Object.create(null);
|
||||
Object.defineProperty(globalThis, MATCHERS_OBJECT, {
|
||||
get: () => globalState
|
||||
});
|
||||
+ Object.defineProperty(globalThis, ASYMMETRIC_MATCHERS_OBJECT, {
|
||||
+ get: () => assymetricMatchers
|
||||
+ });
|
||||
+}
|
||||
+if (!Object.prototype.hasOwnProperty.call(globalThis, JEST_MATCHERS_OBJECT)) {
|
||||
+ const matchers = /* @__PURE__ */ Object.create(null);
|
||||
@ -34,15 +31,14 @@ index 974d6b26f626024fc9904908100c9ecaa54f43e1..5be2d35267e7f0525c6588758dbebe72
|
||||
matchers
|
||||
})
|
||||
});
|
||||
- Object.defineProperty(globalThis, ASYMMETRIC_MATCHERS_OBJECT, {
|
||||
- get: () => assymetricMatchers
|
||||
- });
|
||||
+}
|
||||
+if (!Object.prototype.hasOwnProperty.call(globalThis, ASYMMETRIC_MATCHERS_OBJECT)) {
|
||||
+ const assymetricMatchers = /* @__PURE__ */ Object.create(null);
|
||||
Object.defineProperty(globalThis, ASYMMETRIC_MATCHERS_OBJECT, {
|
||||
get: () => assymetricMatchers
|
||||
});
|
||||
}
|
||||
+
|
||||
function getState(expect) {
|
||||
return globalThis[MATCHERS_OBJECT].get(expect);
|
||||
}
|
||||
+
|
||||
function setState(state, expect) {
|
||||
const map = globalThis[MATCHERS_OBJECT];
|
||||
const current = map.get(expect) || {};
|
||||
|
Loading…
x
Reference in New Issue
Block a user