Skip to content

Commit

Permalink
fix: update ramda imports (#82)
Browse files Browse the repository at this point in the history
Merging as an emergency to fix currently released package.
  • Loading branch information
mdjastrzebski authored Aug 9, 2022
1 parent 8d0e79f commit 2904715
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions src/to-be-disabled.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import compose from 'ramda/src/compose';
import defaultTo from 'ramda/src/defaultTo';
import includes from 'ramda/src/includes';
import path from 'ramda/src/path';
import propEq from 'ramda/src/propEq';
import anyPass from 'ramda/src/anyPass';
import compose from 'ramda/src/compose.js';
import defaultTo from 'ramda/src/defaultTo.js';
import includes from 'ramda/src/includes.js';
import path from 'ramda/src/path.js';
import propEq from 'ramda/src/propEq.js';
import anyPass from 'ramda/src/anyPass.js';
import { matcherHint } from 'jest-matcher-utils';

import { checkReactElement, getType, printElement } from './utils';
Expand Down
8 changes: 4 additions & 4 deletions src/to-be-empty.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { matcherHint } from 'jest-matcher-utils';
import compose from 'ramda/src/compose';
import defaultTo from 'ramda/src/defaultTo';
import path from 'ramda/src/path';
import isEmpty from 'ramda/src/isEmpty';
import compose from 'ramda/src/compose.js';
import defaultTo from 'ramda/src/defaultTo.js';
import path from 'ramda/src/path.js';
import isEmpty from 'ramda/src/isEmpty.js';

import { checkReactElement, printElement } from './utils';

Expand Down
2 changes: 1 addition & 1 deletion src/to-contain-element.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import equals from 'ramda/src/equals';
import equals from 'ramda/src/equals.js';
import { matcherHint, RECEIVED_COLOR as receivedColor } from 'jest-matcher-utils';

import { checkReactElement, printElement } from './utils';
Expand Down
2 changes: 1 addition & 1 deletion src/to-have-prop.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import equals from 'ramda/src/equals';
import equals from 'ramda/src/equals.js';
import { matcherHint, stringify, printExpected } from 'jest-matcher-utils';
import { checkReactElement, getMessage } from './utils';

Expand Down
10 changes: 5 additions & 5 deletions src/to-have-style.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { matcherHint } from 'jest-matcher-utils';
import { diff } from 'jest-diff';
import chalk from 'chalk';
import compose from 'ramda/src/compose';
import all from 'ramda/src/all';
import flatten from 'ramda/src/flatten';
import mergeAll from 'ramda/src/mergeAll';
import toPairs from 'ramda/src/toPairs';
import compose from 'ramda/src/compose.js';
import all from 'ramda/src/all.js';
import flatten from 'ramda/src/flatten.js';
import mergeAll from 'ramda/src/mergeAll.js';
import toPairs from 'ramda/src/toPairs.js';
import { checkReactElement } from './utils';

function isSubset(expected, received) {
Expand Down

0 comments on commit 2904715

Please sign in to comment.