We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5e9894 commit 45db59dCopy full SHA for 45db59d
CHANGELOG.md
@@ -76,6 +76,8 @@
76
77
### Fixes
78
79
+* `[babel-plugin-jest-hoist]` Allow using `console` global variable
80
+ ([#6074](https://github.com/facebook/jest/pull/6074))
81
* `[jest-jasmine2]` Always remove node core message from assert stack traces
82
([#6055](https://github.com/facebook/jest/pull/6055))
83
* `[expect]` Add stack trace when `expect.assertions` and `expect.hasAssertions`
packages/babel-plugin-jest-hoist/src/index.js
@@ -60,6 +60,7 @@ const WHITELISTED_IDENTIFIERS = {
60
WeakMap: true,
61
WeakSet: true,
62
arguments: true,
63
+ console: true,
64
expect: true,
65
isNaN: true,
66
jest: true,
0 commit comments