mirror of
https://github.com/yldio/copilot.git
synced 2024-12-01 07:30:07 +02:00
fix failing tests due to rr upgrade
This commit is contained in:
parent
a7f992e69f
commit
fc9202d96c
@ -58,7 +58,9 @@ Billing.propTypes = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const mapStateToProps = (state, {
|
const mapStateToProps = (state, {
|
||||||
match = {}
|
match = {
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
}) => ({
|
}) => ({
|
||||||
// TODO add cards - as above
|
// TODO add cards - as above
|
||||||
org: orgByIdSelector(match.params.org)(state),
|
org: orgByIdSelector(match.params.org)(state),
|
||||||
|
@ -52,7 +52,9 @@ NewBilling.propTypes = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const mapStateToProps = (state, {
|
const mapStateToProps = (state, {
|
||||||
match = {}
|
match = {
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
}) => ({
|
}) => ({
|
||||||
// TODO add cards - as above
|
// TODO add cards - as above
|
||||||
org: orgByIdSelector(match.params.org)(state),
|
org: orgByIdSelector(match.params.org)(state),
|
||||||
|
@ -42,7 +42,9 @@ NewProject.propTypes = {
|
|||||||
// TODO we'll need to know whether there any cards
|
// TODO we'll need to know whether there any cards
|
||||||
// otherwise go to new billing straight away
|
// otherwise go to new billing straight away
|
||||||
const mapStateToProps = (state, {
|
const mapStateToProps = (state, {
|
||||||
match = {}
|
match = {
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
}) => ({
|
}) => ({
|
||||||
org: orgByIdSelector(match.params.org)(state),
|
org: orgByIdSelector(match.params.org)(state),
|
||||||
router: state.app.router
|
router: state.app.router
|
||||||
|
@ -35,7 +35,9 @@ const People = (props) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const mapStateToProps = (state, {
|
const mapStateToProps = (state, {
|
||||||
match = {}
|
match = {
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
}) => ({
|
}) => ({
|
||||||
people: peopleByOrgIdSelector(match.params.org)(state),
|
people: peopleByOrgIdSelector(match.params.org)(state),
|
||||||
UI: orgUISelector(state),
|
UI: orgUISelector(state),
|
||||||
|
@ -61,7 +61,9 @@ Project.propTypes = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const mapStateToProps = (state, {
|
const mapStateToProps = (state, {
|
||||||
match = {}
|
match = {
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
}) => ({
|
}) => ({
|
||||||
org: orgByIdSelector(match.params.org)(state),
|
org: orgByIdSelector(match.params.org)(state),
|
||||||
project: projectByIdSelector(match.params.projectId)(state),
|
project: projectByIdSelector(match.params.projectId)(state),
|
||||||
|
@ -47,7 +47,9 @@ Instances.propTypes = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const mapStateToProps = (state, {
|
const mapStateToProps = (state, {
|
||||||
match = {}
|
match = {
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
}) => ({
|
}) => ({
|
||||||
instances: instancesByProjectIdSelector(match.params.projectId)(state)
|
instances: instancesByProjectIdSelector(match.params.projectId)(state)
|
||||||
});
|
});
|
||||||
|
@ -57,7 +57,9 @@ ProjectSection.propTypes = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const mapStateToProps = (state, {
|
const mapStateToProps = (state, {
|
||||||
match = {}
|
match = {
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
}) => ({
|
}) => ({
|
||||||
org: orgByIdSelector(match.params.org)(state),
|
org: orgByIdSelector(match.params.org)(state),
|
||||||
project: projectByIdSelector(match.params.projectId)(state),
|
project: projectByIdSelector(match.params.projectId)(state),
|
||||||
|
@ -74,7 +74,9 @@ Projects.propTypes = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const mapStateToProps = (state, {
|
const mapStateToProps = (state, {
|
||||||
match = {}
|
match = {
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
}) => ({
|
}) => ({
|
||||||
org: orgByIdSelector(match.params.org)(state),
|
org: orgByIdSelector(match.params.org)(state),
|
||||||
projects: projectsByOrgIdSelector(match.params.org)(state),
|
projects: projectsByOrgIdSelector(match.params.org)(state),
|
||||||
|
@ -108,7 +108,9 @@ Service.propTypes = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const mapStateToProps = (state, {
|
const mapStateToProps = (state, {
|
||||||
match = {}
|
match = {
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
}) => ({
|
}) => ({
|
||||||
org: orgByIdSelector(match.params.org)(state),
|
org: orgByIdSelector(match.params.org)(state),
|
||||||
project: projectByIdSelector(match.params.projectId)(state),
|
project: projectByIdSelector(match.params.projectId)(state),
|
||||||
|
@ -46,7 +46,9 @@ Instances.propTypes = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const mapStateToProps = (state, {
|
const mapStateToProps = (state, {
|
||||||
match = {}
|
match = {
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
}) => ({
|
}) => ({
|
||||||
instances: instancesByServiceIdSelector(match.params.serviceId)(state)
|
instances: instancesByServiceIdSelector(match.params.serviceId)(state)
|
||||||
});
|
});
|
||||||
|
@ -20,7 +20,9 @@ const {
|
|||||||
} = actions;
|
} = actions;
|
||||||
|
|
||||||
const mapStateToProps = (state, {
|
const mapStateToProps = (state, {
|
||||||
match = {}
|
match = {
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
}) => ({
|
}) => ({
|
||||||
datasets: metricsByServiceIdSelector(match.params.serviceId)(state),
|
datasets: metricsByServiceIdSelector(match.params.serviceId)(state),
|
||||||
metricTypes: metricTypesSelector(state),
|
metricTypes: metricTypesSelector(state),
|
||||||
|
@ -53,7 +53,9 @@ Services.propTypes = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const mapStateToProps = (state, {
|
const mapStateToProps = (state, {
|
||||||
match = {}
|
match = {
|
||||||
|
params: {}
|
||||||
|
}
|
||||||
}) => ({
|
}) => ({
|
||||||
org: orgByIdSelector(match.params.org)(state),
|
org: orgByIdSelector(match.params.org)(state),
|
||||||
project: projectByIdSelector(match.params.projectId)(state),
|
project: projectByIdSelector(match.params.projectId)(state),
|
||||||
|
@ -9,12 +9,13 @@ const {
|
|||||||
} = enzyme;
|
} = enzyme;
|
||||||
|
|
||||||
const {
|
const {
|
||||||
withIntl
|
withIntl,
|
||||||
|
withRouter
|
||||||
} = create;
|
} = create;
|
||||||
|
|
||||||
test('renders <Service> without exploding', (t) => {
|
test('renders <Service> without exploding', (t) => {
|
||||||
const Service = require('@containers/service').WrappedComponent;
|
const Service = require('@containers/service').WrappedComponent;
|
||||||
const wrapper = render(withIntl(<Service />));
|
const wrapper = render(withRouter(withIntl(<Service />)));
|
||||||
t.deepEqual(wrapper.length, 1);
|
t.deepEqual(wrapper.length, 1);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -67,7 +67,9 @@ const withRouter = (children, props = {}) => (
|
|||||||
</BrowserRouter>
|
</BrowserRouter>
|
||||||
);
|
);
|
||||||
|
|
||||||
module.exports = (children, props) => withRedux(withIntl(children), props);
|
module.exports = (children, props) =>
|
||||||
|
withRouter(withRedux(withIntl(children), props));
|
||||||
|
|
||||||
module.exports.withIntl = withIntl;
|
module.exports.withIntl = withIntl;
|
||||||
module.exports.withRedux = withRedux;
|
module.exports.withRedux = withRedux;
|
||||||
module.exports.withRouter = withRouter;
|
module.exports.withRouter = withRouter;
|
||||||
|
Loading…
Reference in New Issue
Block a user