@exodus/test 1.0.0-rc.106 → 1.0.0-rc.107
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 +3 -3
- package/src/expect.cjs +0 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/test",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.107",
|
|
4
4
|
"author": "Exodus Movement, Inc.",
|
|
5
5
|
"description": "A test suite runner",
|
|
6
6
|
"homepage": "https://github.com/ExodusMovement/test",
|
|
@@ -143,11 +143,10 @@
|
|
|
143
143
|
"optionalDependencies": {
|
|
144
144
|
"@chalker/queue": "^1.0.1",
|
|
145
145
|
"@exodus/replay": "^1.0.0-rc.9",
|
|
146
|
-
"@exodus/test-bundler": "1.0.0-rc.
|
|
146
|
+
"@exodus/test-bundler": "1.0.0-rc.8",
|
|
147
147
|
"c8": "^9.1.0",
|
|
148
148
|
"expect": "^30.2.0",
|
|
149
149
|
"fast-glob": "^3.2.11",
|
|
150
|
-
"jest-extended": "^4.0.2",
|
|
151
150
|
"playwright-core": "^1.52.0",
|
|
152
151
|
"pretty-format": "^30.2.0",
|
|
153
152
|
"puppeteer-core": "^24.14.0",
|
|
@@ -164,6 +163,7 @@
|
|
|
164
163
|
"eslint": "^8.44.0",
|
|
165
164
|
"esvu": "^1.2.16",
|
|
166
165
|
"jest": "^29.7.0",
|
|
166
|
+
"jest-extended": "^4.0.2",
|
|
167
167
|
"jest-matcher-utils": "^29.7.0",
|
|
168
168
|
"jest-serializer-ansi-escapes": "^3.0.0",
|
|
169
169
|
"jest-when": "^3.6.0",
|
package/src/expect.cjs
CHANGED
|
@@ -25,10 +25,6 @@ function loadExpect(loadReason) {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
// console.log('expect load reason:', loadReason)
|
|
28
|
-
try {
|
|
29
|
-
expect.extend(require('jest-extended'))
|
|
30
|
-
} catch {}
|
|
31
|
-
|
|
32
28
|
for (const x of extend) expect.extend(...x)
|
|
33
29
|
for (const [key, value] of set) expect[key] = value
|
|
34
30
|
fixupAssertions()
|