Skip to content
This repository was archived by the owner on Apr 11, 2019. It is now read-only.

Commit 08f418d

Browse files
committed
Feat: update tests to pass after new updates
1 parent 69ecf93 commit 08f418d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/src/components/Navbar/tests/__snapshots__/index.test.js.snap

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ exports[`<Navbar /> should render with default props 1`] = `
1111
"vertical": "none"
1212
}
1313
}
14-
responsive={false}
15-
tag="header">
14+
responsive={false}>
1615
<Title
1716
responsive={true}>
1817
<img

app/src/containers/FeatureFirstContainer/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ FeatureFirstContainer.propTypes = {
5757

5858
// mapStateToProps :: {State} -> {Action}
5959
const mapStateToProps = (state) => ({
60-
isLoading: state.isLoading,
60+
isLoading: state.featureComponent.isLoading,
6161
});
6262

6363
// mapDispatchToProps :: Dispatch Func -> {Actions}

app/src/containers/FeatureFirstContainer/tests/__snapshots__/index.test.js.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ exports[`<FeatureFirstContainer /> renders with default props 1`] = `
88
"loadDataSuccess": [Function anonymous]
99
}
1010
}
11+
isLoading={false}
1112
store={
1213
Object {
1314
"clearActions": [Function clearActions],

0 commit comments

Comments
 (0)