Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 940 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 940 Bytes

Cypress Interview

This is a small app for cypress interview purposes. You'll have to complete all tasks in a given time. Please create a separate branch before you start coding. Good luck!

Set up this repo

## install the node_modules
npm install

## start the local webserver
npm start

The npm start script will spawn a webserver on port 8080 which hosts the Kitchen Sink App.

You can verify this by opening your browser and navigating to: http://localhost:8080

## launch the cypress test runner
npm run cy:open

shortcut: you can use command npm run local:open that uses start-server-and-test to start local server and open Cypress. When you close Cypress, the local server is stopped automatically. Similarly you can use npm run local:run to start the server, run Cypress tests headlessly and close the server.