@vitest/expect 2.0.0-beta.10 → 2.0.0-beta.11

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.
Files changed (3) hide show
  1. package/README.md +5 -1
  2. package/dist/index.js +680 -454
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -6,7 +6,11 @@ Jest's expect matchers as a Chai plugin.
6
6
 
7
7
  ```js
8
8
  import * as chai from 'chai'
9
- import { JestAsymmetricMatchers, JestChaiExpect, JestExtend } from '@vitest/expect'
9
+ import {
10
+ JestAsymmetricMatchers,
11
+ JestChaiExpect,
12
+ JestExtend,
13
+ } from '@vitest/expect'
10
14
 
11
15
  // allows using expect.extend instead of chai.use to extend plugins
12
16
  chai.use(JestExtend)