aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-07-02 05:13:38 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-07-02 06:19:03 +0530
commitd16cc1f2c59818e53f28b4d6b4d27250331f15d7 (patch)
tree57bf4d149ec2be88dd0d351142998ce96db0d659 /test
parentchore: correctly export/import ui elements (diff)
downloadferdium-app-d16cc1f2c59818e53f28b4d6b4d27250331f15d7.tar.gz
ferdium-app-d16cc1f2c59818e53f28b4d6b4d27250331f15d7.tar.zst
ferdium-app-d16cc1f2c59818e53f28b4d6b4d27250331f15d7.zip
Use default exports instead of named exports
Diffstat (limited to 'test')
-rw-r--r--test/features/utils/FeatureStore.test.js2
-rw-r--r--test/helpers/array-helpers.test.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/features/utils/FeatureStore.test.js b/test/features/utils/FeatureStore.test.js
index d8d85bec1..3ef8116d9 100644
--- a/test/features/utils/FeatureStore.test.js
+++ b/test/features/utils/FeatureStore.test.js
@@ -1,6 +1,6 @@
1import PropTypes from 'prop-types'; 1import PropTypes from 'prop-types';
2import { observable } from 'mobx'; 2import { observable } from 'mobx';
3import { FeatureStore } from '../../../src/features/utils/FeatureStore'; 3import FeatureStore from '../../../src/features/utils/FeatureStore';
4import { createActionsFromDefinitions } from '../../../src/actions/lib/actions'; 4import { createActionsFromDefinitions } from '../../../src/actions/lib/actions';
5import { createActionBindings } from '../../../src/features/utils/ActionBinding'; 5import { createActionBindings } from '../../../src/features/utils/ActionBinding';
6import { createReactions } from '../../../src/stores/lib/Reaction'; 6import { createReactions } from '../../../src/stores/lib/Reaction';
diff --git a/test/helpers/array-helpers.test.ts b/test/helpers/array-helpers.test.ts
index cbb7822e9..ee94bac80 100644
--- a/test/helpers/array-helpers.test.ts
+++ b/test/helpers/array-helpers.test.ts
@@ -1,4 +1,4 @@
1import { shuffleArray } from '../../src/helpers/array-helpers'; 1import shuffleArray from '../../src/helpers/array-helpers';
2 2
3describe('array_helpers', () => { 3describe('array_helpers', () => {
4 it('isValidExternalURL', () => { 4 it('isValidExternalURL', () => {