Skip to content

Commit b3ab3bd

Browse files
committed
fix: proper @jest/globals import
1 parent b959a68 commit b3ab3bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jest-globals.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* istanbul ignore file */
22

3-
import globals from '@jest/globals'
3+
import {expect} from '@jest/globals'
44
import * as extensions from './matchers'
55

6-
globals.expect.extend(extensions)
6+
expect.extend(extensions)

0 commit comments

Comments
 (0)