Skip to content

Commit 414f3ab

Browse files
committed
Other fixes
1 parent ea41676 commit 414f3ab

File tree

5 files changed

+400
-400
lines changed

5 files changed

+400
-400
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
"google-closure-compiler": "^20200224.0.0",
6565
"gzip-size": "^5.1.1",
6666
"jasmine-check": "^1.0.0-rc.0",
67-
"jest": "^25.1.0",
68-
"jest-diff": "^25.1.0",
67+
"jest": "^25.2.7",
68+
"jest-diff": "^25.2.6",
6969
"jest-snapshot-serializer-raw": "^1.1.0",
7070
"minimatch": "^3.0.4",
7171
"minimist": "^1.2.0",

scripts/jest/matchers/interactionTracingMatchers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const jestDiff = require('jest-diff');
3+
const jestDiff = require('jest-diff').default;
44

55
function toContainNoInteractions(actualSet) {
66
return {

scripts/jest/matchers/profilerMatchers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const jestDiff = require('jest-diff');
3+
const jestDiff = require('jest-diff').default;
44

55
function toHaveLastRenderedWithNoInteractions(onRenderMockFn) {
66
const calls = onRenderMockFn.mock.calls;

scripts/jest/matchers/toWarnDev.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const jestDiff = require('jest-diff');
3+
const jestDiff = require('jest-diff').default;
44
const util = require('util');
55
const shouldIgnoreConsoleError = require('../shouldIgnoreConsoleError');
66

0 commit comments

Comments
 (0)