Skip to content

harshi0102/ToDoList-Testing

Repository files navigation

πŸ“— Table of Contents

πŸ“– [Todo_List Project Testing]

[Todo_List App Testing] is a simple website that allows the user to add and remove tasks from his todo list.Unit test is written for the To Do list application.

Testing Part 1

I have used Jest framework for testing.I created a test file ([..].test.js) for a file containing the add item and delete item functions that I want to test.I have used a Mock folder for a storage object to "imitate" localStorage operations and also used Mock HTML to test to check if add/delete functions add or remove exactly one element to/from the list in the DOM.

Testing Part 2 I have used jest framework for testing and created a test file(s) ([..].test.js) for a file(s) containing the following functions: a function for editing the task description. a function for updating an item's 'completed' status. the "Clear all completed" function. Used the mock storage object that is created in Part 1 of Testing of this project to mock the localStorage updates. Mocked the HTML elements to test DOM manipulation functions. Grouped my tests using the describe() method.

πŸ›  Built With

Tech Stack

Javascript runtime environment Version control

Key Features

  • [Desktop Version]
  • [Dynamic Design]

(back to top)

πŸš€ Live Demo

Click here for the live demo

πŸ’» Getting Started

Creating your first "Todo List" project

To get a local copy up and running, follow these steps.

Prerequisites

In order to run this project you need:

-A Git hub account -Git bash -Node JS -Visual Studio Code as your code editor

Setup

Clone this repository to your desired folder:

  cd my-folder
  git clone[(https://github.com/harshi0102/ToDoList-Testing.git)]

Usage

Run Dev Server (Port 3000)

  npm run dev

Build for production

npm run build

Set Up Linters

Define Linters

A linter is a tool to help you improve your code. You can learn more about Linters here: (source: (https://www.testim.io/blog/what-is-a-linter-heres-a-definition-and-quick-start-guide/)).

Advantages of Linting:

  1. Fewer errors in production- The use of linters helps to diagnose and fix technical issues such as code smells. As a result, fewer defects make their way to production.
  2. Achieving a more readable and consistent style, through the enforcement of its rules.
  3. Having more secure and performant code.
  4. Having an objective and measurable assessment of code quality.
  5. Having fewer discussions about code style and aesthetic choices during code reviews.

Install Linters

You can find linters for most of the programming languages, e.g. Rubocop for Ruby or ESLint for JavaScript.

Also, there are many ways you can integrate a linter in your workflow:

-text editor plugin -GitHub Actions -GitHub apps

Set up Linters

Note: The npm package manager is going to create a node_modules directory to install all of your dependencies. You shouldn't commit that directory. To avoid that, you can create a .gitignore file and add node_modules to it:

.gitignore

node_modules/

ESLint

Run

npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x

Web Hint

This is a customizable linting tool that helps you improve your site's accessibility, speed, cross-browser compatibility, and more by checking your code for best practices and common errors.

NOTE: If you are using Windows, make sure you initialize npm to create package.json file.

npm init -y
  1. Run
    npm install --save-dev hint@7.x
    
    how to use npm: (https://docs.npmjs.com/downloading-and-installing-node-js-and-npm).
  2. Copy .hintrc to the root directory of your project.
  3. Do not make any changes in config files - they represent style guidelines that you share with your team - which is a group of all Microverse students.
  4. Run
    npx hint .
    
    Copy contents of .eslintrc.json to the root directory of your project
  5. Fix validation errors.

A mighty, modern linter that helps you avoid errors and enforce conventions in your styles.

  1. Run

npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x not sure how to use npm? Read this.

  1. Copy .stylelintrc.json to the root directory of your project.

  2. Do not make any changes in config files - they represent style guidelines that you share with your team - which is a group of all Microverse students.

If you think that change is necessary - open a Pull Request in this repository and let your code reviewer know about it. 4. Run npx stylelint "**/*.{css,scss}" on the root of your directory of your project.

  1. Fix linter errors.

  2. IMPORTANT NOTE: feel free to research auto-correct options for Stylelint if you get a flood of errors but keep in mind that correcting style errors manually will help you to make a habit of writing a clean code!

(back to top)

πŸ‘₯ Authors

πŸ‘€ Harshika Govind

πŸ‘€ Nirere Marie Christelle

🀝 Contributing

πŸ”­ Future Features

[Feature-1]

  • Add more styling (aesthetics)

[Feature-2]

  • Dynamic todo list

(back to top)

Contributions, issues, and feature requests are welcome!

Feel free to check the issues page.

⭐️ Show your support

If you like this project, kindly leave a comment below and share it with someone who enjoys coding! Coding is all about continuous learning and allowing yourself to be a beginner. Keep going!

πŸ™ Acknowledgments

I'm thankful to Microverse for providing a study platform which guided me through this project and to my coding partners at Microverse for the collaborative effort.

πŸ“ License

This project is MIT licensed.

(back to top)

About

Todo List Testing Project is a todo list app testing project done by jest technology -where todo list app allows the user to add or remove any todo list .

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published