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 1ea05fb commit bed949bCopy full SHA for bed949b
CHANGELOG.md
@@ -4,6 +4,8 @@
4
5
### Fixes
6
7
+* `[babel-plugin-jest-hoist]` Allow using `console` global variable
8
+ ([#6074](https://github.com/facebook/jest/pull/6074))
9
* `[jest-jasmine2]` Always remove node core message from assert stack traces
10
([#6061](https://github.com/facebook/jest/pull/6061))
11
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
jest: true,
66
require: true,
0 commit comments