Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-atr committed Oct 20, 2022
1 parent 3e3b940 commit 5a659c2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 15 deletions.
4 changes: 1 addition & 3 deletions tests/helpers/get-number-from-string.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {
getNumberFromString,
} from '../../src/helpers';
import { getNumberFromString } from '../../src/helpers';

const { test, module } = QUnit;
const name = 'scriptlets-redirects helpers';
Expand Down
4 changes: 1 addition & 3 deletions tests/helpers/match-stack-trace.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {
matchStackTrace,
} from '../../src/helpers';
import { matchStackTrace } from '../../src/helpers';

const { test, module } = QUnit;
const name = 'scriptlets-redirects helpers';
Expand Down
4 changes: 1 addition & 3 deletions tests/helpers/noop-promise-resolve.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {
noopPromiseResolve,
} from '../../src/helpers';
import { noopPromiseResolve } from '../../src/helpers';

const { test, module } = QUnit;
const name = 'scriptlets-redirects helpers';
Expand Down
4 changes: 1 addition & 3 deletions tests/helpers/parse-match-props.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {
parseMatchProps,
} from '../../src/helpers';
import { parseMatchProps } from '../../src/helpers';

const { test, module } = QUnit;
const name = 'scriptlets-redirects helpers';
Expand Down
4 changes: 1 addition & 3 deletions tests/helpers/to-regexp.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {
toRegExp,
} from '../../src/helpers';
import { toRegExp } from '../../src/helpers';

const { test, module } = QUnit;
const name = 'scriptlets-redirects helpers';
Expand Down

0 comments on commit 5a659c2

Please sign in to comment.