UI Engineer Hiring Project (Engineering Team)
Check out the challenge notes for details on project requirements and submission.
A working Node dev environment (LTS recommended). This project was scaffolded with Create React App. CRA uses Yarn out-of-the-box. You don't have to use Yarn. npm works just fine π.
Fork/clone/download this repo it to your computer.
Go into that directory and install dependencies by running:
yarn
Or:
npm install
Below are notable folders in this project:
/ui-eng-test-potato-app
|- src/
| \- components/
\- stories/
The component files will be located under src/components
.
The Storybook files are located under stories/
This project is basically an out-of-the-box Create React App project, that was generated via create-react-app
.
Fire up the local Storybook server by running:
yarn run storybook
Visit the dev environment at http://localhost:9009/.
The only test suite set up is powered by Jest. To get that setup, install dependencies by running:
yarn
To run the tests, run this command:
yarn run test