Skip to content

Commit

Permalink
Merge pull request #494 from Bit-Nation/feature/documents-storage
Browse files Browse the repository at this point in the history
Feature/documents storage

Former-commit-id: 785d9bc [formerly 3c76bb3]
Former-commit-id: b907a03
  • Loading branch information
seland authored Sep 2, 2018
2 parents 42153ee + 255404f commit 29e7ab0
Show file tree
Hide file tree
Showing 53 changed files with 1,859 additions and 720 deletions.
1 change: 1 addition & 0 deletions __tests__/src/reducers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ test('rootReducer contains all child reducers', () => {
'wallet',
'settings',
'dApps',
'documents',
];

reducerNames.forEach((reducerName) => {
Expand Down
2 changes: 2 additions & 0 deletions __tests__/src/sagas/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import chat from '../../../src/sagas/chat';
import migration from '../../../src/sagas/migration';
import dApps from '../../../src/sagas/dApps';
import upstream from '../../../src/sagas/upstream';
import documents from '../../../src/sagas/documents';

test('rootSaga', () => {
const iterator = rootSaga();
Expand All @@ -36,5 +37,6 @@ test('rootSaga', () => {
call(dApps),
call(migration),
call(upstream),
call(documents),
]));
});
Loading

0 comments on commit 29e7ab0

Please sign in to comment.