Skip to content

Latest commit

 

History

History
101 lines (79 loc) · 2.59 KB

README.md

File metadata and controls

101 lines (79 loc) · 2.59 KB


IC Community Banner

ICDS Test Application

Test project that is used to write true E2E tests using ICDS (@ukic/react) components.

Table of Contents
  1. About The Project
  2. Getting Started

About The Project

ICDS Test App Screen Shot

(back to top)

Built With

  • React
  • Vite
  • Cypress
  • React Testing Library
  • Jest

(back to top)

Getting Started

Run the following steps to get the ICDS test app up and running.

Prerequisites

This project uses Node.

npm install npm@latest -g

Installation

  1. Install NPM packages
    npm install
  2. Run the development environment
    npm run develop
    Navigate to the localhost port
  3. Run the Jest tests
    npm run jest
  4. Run the Cypress tests
    cd cypress-tests
    npm install
    npm run cypress:open

(back to top)