How to test condition with Jest in React-Native app
I have to test this line of condition, but I have no idea of how can I do, everything I try to do gives error or doesn't change my percent cover test.
Basically, if there is no order, it haves to appear an message ('There is no orders'
) in other screen (in a list), or it haves to appear ('Received orders'
).
It is this specific condition, if you can help me:
.then((responseJson) => {
if (responseJson.length == 0) {
this.setState({ received_order_message: 'There is no orders' });
}
else {
this.setState({ received_order_message: 'There is orders' });
}
})
Here is a part of the code of interest:
class OrderedProducts extends Component {
constructor(props) {
super(props);
this.state = {
orders: [''],
buyer_orders: [''],
refreshing: false,
my_order_message: 'My orders',
received_order_message: 'Received orders',
};
}
componentDidMount(){
this.loadOrders();
}
loadOrders = async () => {
const {state} = this.props.navigation;
var token = state.params ? state.params.token : undefined;
var user = jwt_decode(token);
const orders_screen_path = `${process.env.ORDERS}/api/orders_screen/`;
fetch(orders_screen_path, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
'user_id': user.user_id,
'token': token,
}),
})
.then((response) => response.json())
.then((responseJson) => {
console.log(responseJson);
if (responseJson.length == 0) {
this.setState({ received_order_message: 'There is no orders' });
}
else {
this.setState({ received_order_message: 'There is orders' });
}
if (responseJson.length > 1) {
responseJson.sort((order1, order2) => {
return (order1.date - order2.date);
}).reverse();
}
this.setState({ orders: responseJson });
})
.catch((error) => {
console.error(error);
});
Thanks.
reactjs react-native jestjs babel-jest
add a comment |
I have to test this line of condition, but I have no idea of how can I do, everything I try to do gives error or doesn't change my percent cover test.
Basically, if there is no order, it haves to appear an message ('There is no orders'
) in other screen (in a list), or it haves to appear ('Received orders'
).
It is this specific condition, if you can help me:
.then((responseJson) => {
if (responseJson.length == 0) {
this.setState({ received_order_message: 'There is no orders' });
}
else {
this.setState({ received_order_message: 'There is orders' });
}
})
Here is a part of the code of interest:
class OrderedProducts extends Component {
constructor(props) {
super(props);
this.state = {
orders: [''],
buyer_orders: [''],
refreshing: false,
my_order_message: 'My orders',
received_order_message: 'Received orders',
};
}
componentDidMount(){
this.loadOrders();
}
loadOrders = async () => {
const {state} = this.props.navigation;
var token = state.params ? state.params.token : undefined;
var user = jwt_decode(token);
const orders_screen_path = `${process.env.ORDERS}/api/orders_screen/`;
fetch(orders_screen_path, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
'user_id': user.user_id,
'token': token,
}),
})
.then((response) => response.json())
.then((responseJson) => {
console.log(responseJson);
if (responseJson.length == 0) {
this.setState({ received_order_message: 'There is no orders' });
}
else {
this.setState({ received_order_message: 'There is orders' });
}
if (responseJson.length > 1) {
responseJson.sort((order1, order2) => {
return (order1.date - order2.date);
}).reverse();
}
this.setState({ orders: responseJson });
})
.catch((error) => {
console.error(error);
});
Thanks.
reactjs react-native jestjs babel-jest
have you handled mockingfetch()
call? you need to fake response with empty and non-empty list to cover this block
– skyboyer
Nov 21 '18 at 7:09
Yess, I've made it, but this line in specif I couldn't pass.. I'll try to make what you said
– yoongi_s
Nov 22 '18 at 13:11
add a comment |
I have to test this line of condition, but I have no idea of how can I do, everything I try to do gives error or doesn't change my percent cover test.
Basically, if there is no order, it haves to appear an message ('There is no orders'
) in other screen (in a list), or it haves to appear ('Received orders'
).
It is this specific condition, if you can help me:
.then((responseJson) => {
if (responseJson.length == 0) {
this.setState({ received_order_message: 'There is no orders' });
}
else {
this.setState({ received_order_message: 'There is orders' });
}
})
Here is a part of the code of interest:
class OrderedProducts extends Component {
constructor(props) {
super(props);
this.state = {
orders: [''],
buyer_orders: [''],
refreshing: false,
my_order_message: 'My orders',
received_order_message: 'Received orders',
};
}
componentDidMount(){
this.loadOrders();
}
loadOrders = async () => {
const {state} = this.props.navigation;
var token = state.params ? state.params.token : undefined;
var user = jwt_decode(token);
const orders_screen_path = `${process.env.ORDERS}/api/orders_screen/`;
fetch(orders_screen_path, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
'user_id': user.user_id,
'token': token,
}),
})
.then((response) => response.json())
.then((responseJson) => {
console.log(responseJson);
if (responseJson.length == 0) {
this.setState({ received_order_message: 'There is no orders' });
}
else {
this.setState({ received_order_message: 'There is orders' });
}
if (responseJson.length > 1) {
responseJson.sort((order1, order2) => {
return (order1.date - order2.date);
}).reverse();
}
this.setState({ orders: responseJson });
})
.catch((error) => {
console.error(error);
});
Thanks.
reactjs react-native jestjs babel-jest
I have to test this line of condition, but I have no idea of how can I do, everything I try to do gives error or doesn't change my percent cover test.
Basically, if there is no order, it haves to appear an message ('There is no orders'
) in other screen (in a list), or it haves to appear ('Received orders'
).
It is this specific condition, if you can help me:
.then((responseJson) => {
if (responseJson.length == 0) {
this.setState({ received_order_message: 'There is no orders' });
}
else {
this.setState({ received_order_message: 'There is orders' });
}
})
Here is a part of the code of interest:
class OrderedProducts extends Component {
constructor(props) {
super(props);
this.state = {
orders: [''],
buyer_orders: [''],
refreshing: false,
my_order_message: 'My orders',
received_order_message: 'Received orders',
};
}
componentDidMount(){
this.loadOrders();
}
loadOrders = async () => {
const {state} = this.props.navigation;
var token = state.params ? state.params.token : undefined;
var user = jwt_decode(token);
const orders_screen_path = `${process.env.ORDERS}/api/orders_screen/`;
fetch(orders_screen_path, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
'user_id': user.user_id,
'token': token,
}),
})
.then((response) => response.json())
.then((responseJson) => {
console.log(responseJson);
if (responseJson.length == 0) {
this.setState({ received_order_message: 'There is no orders' });
}
else {
this.setState({ received_order_message: 'There is orders' });
}
if (responseJson.length > 1) {
responseJson.sort((order1, order2) => {
return (order1.date - order2.date);
}).reverse();
}
this.setState({ orders: responseJson });
})
.catch((error) => {
console.error(error);
});
Thanks.
reactjs react-native jestjs babel-jest
reactjs react-native jestjs babel-jest
edited Nov 22 '18 at 13:20
yoongi_s
asked Nov 21 '18 at 4:52
yoongi_syoongi_s
74
74
have you handled mockingfetch()
call? you need to fake response with empty and non-empty list to cover this block
– skyboyer
Nov 21 '18 at 7:09
Yess, I've made it, but this line in specif I couldn't pass.. I'll try to make what you said
– yoongi_s
Nov 22 '18 at 13:11
add a comment |
have you handled mockingfetch()
call? you need to fake response with empty and non-empty list to cover this block
– skyboyer
Nov 21 '18 at 7:09
Yess, I've made it, but this line in specif I couldn't pass.. I'll try to make what you said
– yoongi_s
Nov 22 '18 at 13:11
have you handled mocking
fetch()
call? you need to fake response with empty and non-empty list to cover this block– skyboyer
Nov 21 '18 at 7:09
have you handled mocking
fetch()
call? you need to fake response with empty and non-empty list to cover this block– skyboyer
Nov 21 '18 at 7:09
Yess, I've made it, but this line in specif I couldn't pass.. I'll try to make what you said
– yoongi_s
Nov 22 '18 at 13:11
Yess, I've made it, but this line in specif I couldn't pass.. I'll try to make what you said
– yoongi_s
Nov 22 '18 at 13:11
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53405452%2fhow-to-test-condition-with-jest-in-react-native-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53405452%2fhow-to-test-condition-with-jest-in-react-native-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
have you handled mocking
fetch()
call? you need to fake response with empty and non-empty list to cover this block– skyboyer
Nov 21 '18 at 7:09
Yess, I've made it, but this line in specif I couldn't pass.. I'll try to make what you said
– yoongi_s
Nov 22 '18 at 13:11