This website is for our core open source project Job Triage.
You can checkout our core product Job Triage App. It is an interactive way to manage your job applications.
The purpose of this website is to provide information and guidance to the users about the core product. We want to keep it separate from the web app to have more flexibility and to keep our web app more focused.
First, run the development server:
yarn dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the pages. The page auto-updates as you edit the file.
We are using the following tools to write tests for the app.
- Jest and React-testing-library for the unit and integration tests
- Cypress.io for the integration and end to end tests
- To run all the tests (jest + cypress),
yarn test
- To run only jest tests
yarn test:jest
- To run cypress tests with GUI
yarn dev:coverage
&&
yarn cy:open
- To run cypress tests in the terminal
yarn test:cy
Once, you run the command yarn test
, it will run all the tests and generate a combined test coverage report.
You can run yarn open:coverage
to open an html page with detailed coverage reports.