aboutsummaryrefslogtreecommitdiffstats
path: root/test/features
diff options
context:
space:
mode:
authorLibravatar Balaji Vijayakumar <kuttibalaji.v6@gmail.com>2022-12-08 22:28:46 +0530
committerLibravatar GitHub <noreply@github.com>2022-12-08 16:58:46 +0000
commit93d61ced55e7e1c486cdbe6c02c16435ca698860 (patch)
treee4d9e53260e508711cfcf45232d086e906a09d8e /test/features
parentBackported deprecation fixes from electron v22 upgrade (diff)
downloadferdium-app-93d61ced55e7e1c486cdbe6c02c16435ca698860.tar.gz
ferdium-app-93d61ced55e7e1c486cdbe6c02c16435ca698860.tar.zst
ferdium-app-93d61ced55e7e1c486cdbe6c02c16435ca698860.zip
migrate from gulp to esbuild for faster builds (#815)
Diffstat (limited to 'test/features')
-rw-r--r--test/features/utils/FeatureStore.test.ts (renamed from test/features/utils/FeatureStore.test.js)4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/features/utils/FeatureStore.test.js b/test/features/utils/FeatureStore.test.ts
index 3ef8116d9..de40d257e 100644
--- a/test/features/utils/FeatureStore.test.js
+++ b/test/features/utils/FeatureStore.test.ts
@@ -5,7 +5,7 @@ import { 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';
7 7
8const actions = createActionsFromDefinitions( 8const actions: any = createActionsFromDefinitions(
9 { 9 {
10 countUp: {}, 10 countUp: {},
11 }, 11 },
@@ -34,7 +34,7 @@ class TestFeatureStore extends FeatureStore {
34} 34}
35 35
36describe('FeatureStore', () => { 36describe('FeatureStore', () => {
37 let store = null; 37 let store: any = null;
38 38
39 beforeEach(() => { 39 beforeEach(() => {
40 store = new TestFeatureStore(); 40 store = new TestFeatureStore();