fix JS tests
This commit is contained in:
parent
edea41d35e
commit
41df8413fc
@ -60,6 +60,11 @@ function createRedux () {
|
|||||||
},
|
},
|
||||||
balances: {
|
balances: {
|
||||||
balances: {}
|
balances: {}
|
||||||
|
},
|
||||||
|
nodeStatus: {
|
||||||
|
nodeKind: {
|
||||||
|
'availability': 'personal'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -33,6 +33,11 @@ function createStore () {
|
|||||||
views: {
|
views: {
|
||||||
settings: { fixed: true }
|
settings: { fixed: true }
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
nodeStatus: {
|
||||||
|
nodeKind: {
|
||||||
|
'availability': 'personal'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,25 @@ const TEST_APP_HISTORY = [];
|
|||||||
let api;
|
let api;
|
||||||
let component;
|
let component;
|
||||||
let instance;
|
let instance;
|
||||||
|
let store;
|
||||||
|
|
||||||
|
function createStore () {
|
||||||
|
store = {
|
||||||
|
dispatch: sinon.stub(),
|
||||||
|
subscribe: sinon.stub(),
|
||||||
|
getState: () => {
|
||||||
|
return {
|
||||||
|
nodeStatus: {
|
||||||
|
nodeKind: {
|
||||||
|
'availability': 'personal'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return store;
|
||||||
|
}
|
||||||
|
|
||||||
function createApi () {
|
function createApi () {
|
||||||
api = {
|
api = {
|
||||||
@ -40,11 +59,15 @@ function render () {
|
|||||||
component = shallow(
|
component = shallow(
|
||||||
<Home />,
|
<Home />,
|
||||||
{
|
{
|
||||||
|
context: {
|
||||||
|
store: createStore()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
).find('Home').shallow({
|
||||||
context: {
|
context: {
|
||||||
api: createApi()
|
api: createApi()
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
);
|
|
||||||
instance = component.instance();
|
instance = component.instance();
|
||||||
|
|
||||||
return component;
|
return component;
|
||||||
|
Loading…
Reference in New Issue
Block a user