Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 944b83b

Browse files
committed
Remove unused store async storage
1 parent d592547 commit 944b83b

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

test/unit/action/app-storage.spec.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@ describe('Action App Storage Unit Tests', () => {
6565
});
6666

6767
describe('save()', () => {
68-
beforeEach(() => {
69-
store._AsyncStorage = AsyncStorageStub;
70-
});
71-
7268
it('should save all settings', async () => {
7369
store.settings = { foo: 'bar' };
7470
await db.save();
@@ -84,10 +80,6 @@ describe('Action App Storage Unit Tests', () => {
8480
});
8581

8682
describe('clear()', () => {
87-
beforeEach(() => {
88-
store._AsyncStorage = AsyncStorageStub;
89-
});
90-
9183
it('should clear all settings', async () => {
9284
await db.clear();
9385
expect(AsyncStorageStub.clear, 'was called once');

0 commit comments

Comments
 (0)