Skip to content

Commit

Permalink
Use Jest version 27.0.1
Browse files Browse the repository at this point in the history
See release notes: https://jestjs.io/blog/2021/05/25/jest-27

There is currently one issue with global `afterEach` callbacks order which I workarounded by using `afterAll` (see: jestjs/jest#11456). I will wait for the resolution of that issue and update our code accordingly.

adeira-source-id: 154daeb2c02992787370c74c897cfb6a6164b0ab
  • Loading branch information
mrtnzlml authored and adeira-github-bot committed May 26, 2021
1 parent bd895da commit 4e90956
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
5 changes: 4 additions & 1 deletion src/__tests__/SxDomTests.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// @flow
/**
* @flow
* @jest-environment jsdom
*/

/* global document */

Expand Down
5 changes: 4 additions & 1 deletion src/__tests__/autoprefixRuntimeStyles.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// @flow
/**
* @flow
* @jest-environment jsdom
*/

/* global document */

Expand Down
5 changes: 4 additions & 1 deletion src/__tests__/composability.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// @flow
/**
* @flow
* @jest-environment jsdom
*/

/* global document */

Expand Down
5 changes: 4 additions & 1 deletion src/__tests__/injectRuntimeStyles.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// @flow
/**
* @flow
* @jest-environment jsdom
*/

/* global document */

Expand Down

0 comments on commit 4e90956

Please sign in to comment.