Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jest testing for add and remove function for todo-list app #9

Merged
merged 7 commits into from Jun 17, 2022

Conversation

Christabelle143
Copy link
Owner

In this project my partner and I;

  • Used jest framework for testing.
  • Created a test file ([..].test.js) for a file containing the add item and delete item functions that you want to test.
  • Mock HTML to test if add/delete functions add or remove exactly one
  • element to/from the list in the DOM.
  • Used describe() method for the test.

Copy link

@medaminedev66 medaminedev66 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @Christabelle143 and @mirwaisfarahi 😃, 👋,

Good job so far!
There are some issues that you still need to work on to go to the next project but you are almost there!

Highlights

  • There are no linter errors ✔️
  • You have a descriptive PR ✔️

Required Changes ♻️

  • It would be preferable if your README included instructions on how users can run the tests locally.

Check the comments under the review.

Optional suggestions

Every comment with the [OPTIONAL] prefix is not crucial enough to stop the approval of this PR. However, I strongly recommend you to take them into account as they can make your code better.

Cheers and Happy coding!👏👏👏

Feel free to leave any questions or comments in the PR thread if something is not 100% clear.
Please, remember to tag me in your question so I can receive the notification.

Please, do not open a new Pull Request for re-reviews. You should use the same Pull Request submitted for the first review, either valid or invalid unless it is requested otherwise.


As described in the Code reviews limits policy you have a limited number of reviews per project (check the exact number in your Dashboard). If you think that the code review was not fair, you can request a second opinion using this form.

Comment on lines 55 to 62
// export function removeone(element) {
// console.log(element.parentNode.id)
// const todolist = load();
// const index = element.parentNode.id;
// todolist.splice(index, 1);
// save(todolist);
// return todolist;
// }

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Please do not commit old pieces of code as inline comments. They will make your project look messy. If you need to review a previous version of your code, you can always use git history.

Comment on lines 66 to 69
// const index = id;
// console.log(typeof(id));
todolist.splice(id, 1);
// console.log(todolist.length)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Please remove the commented code to keep your code clean.

src/index.js Outdated
Comment on lines 78 to 82
// console.log(i)
todolist = removeone(trash.parentNode.id);
// todolist = removeone(i);
ShowAll(todoDiv);
window.location.reload();
// window.location.reload();

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Please remove the commented code to keep your code clean.

Copy link

@tufoinnkuo10 tufoinnkuo10 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Status: Approved ✔️ ✔️ ✔️

Hi team 👏🏾

Your project is complete! Great job for making the requested changes 🥇. There is nothing else to say other than... it's time to merge it 🍾🚢 :shipit: . Congratulations! 🎉💯🌟

Good Points 👍

  • Descriptive Pull Request✔️
  • todolist adds and removes✔️
  • jest test passed✔️
  • No linter errors ✔️

# Cheers..Happy coding!..and keep soaring higher! 💻 🍷 🚀

tufoin

Feel free to leave any questions or comments in the PR thread if something is not 100% clear.
Please, remember to tag me in your question so I can receive the notification.

Please, do not open a new Pull Request for re-reviews. You should use the same Pull Request submitted for the first review, either valid or invalid unless it is requested otherwise.


As described in the Code reviews limits policy you have 2 more limited reviews per this project. If you think that the code review was not fair, you can request a second opinion using this form.

@mirwaisfarahi mirwaisfarahi merged commit 708848f into main Jun 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants