@vitest/expect 2.0.0-beta.11 → 2.0.0-beta.13
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/dist/index.d.ts +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
@@ -190,7 +190,7 @@ declare class StringContaining extends AsymmetricMatcher<string> {
|
|
190
190
|
getExpectedType(): string;
|
191
191
|
}
|
192
192
|
declare class Anything extends AsymmetricMatcher<void> {
|
193
|
-
asymmetricMatch(other: unknown):
|
193
|
+
asymmetricMatch(other: unknown): other is {};
|
194
194
|
toString(): string;
|
195
195
|
toAsymmetricMatcher(): string;
|
196
196
|
}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vitest/expect",
|
3
3
|
"type": "module",
|
4
|
-
"version": "2.0.0-beta.
|
4
|
+
"version": "2.0.0-beta.13",
|
5
5
|
"description": "Jest's expect matchers as a Chai plugin",
|
6
6
|
"license": "MIT",
|
7
7
|
"funding": "https://opencollective.com/vitest",
|
@@ -31,14 +31,14 @@
|
|
31
31
|
],
|
32
32
|
"dependencies": {
|
33
33
|
"chai": "^5.1.1",
|
34
|
-
"@vitest/spy": "2.0.0-beta.
|
35
|
-
"@vitest/utils": "2.0.0-beta.
|
34
|
+
"@vitest/spy": "2.0.0-beta.13",
|
35
|
+
"@vitest/utils": "2.0.0-beta.13"
|
36
36
|
},
|
37
37
|
"devDependencies": {
|
38
38
|
"@types/chai": "4.3.6",
|
39
39
|
"picocolors": "^1.0.1",
|
40
40
|
"rollup-plugin-copy": "^3.5.0",
|
41
|
-
"@vitest/runner": "2.0.0-beta.
|
41
|
+
"@vitest/runner": "2.0.0-beta.13"
|
42
42
|
},
|
43
43
|
"scripts": {
|
44
44
|
"build": "rimraf dist && rollup -c",
|