Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 1.02 KB

README.md

File metadata and controls

35 lines (23 loc) · 1.02 KB

@mtucourses/frontend

codecov

✨ In the wild

🧰 Development

Copy .env.example to .env and update as necessary. Then:

# First:
# install dependencies
yarn install

# then:
# start dev server in watch mode
yarn dev

# and you can:

# run tests
yarn test

# run tests in watch mode
yarn test:watch

📝 Design Notes

  • Ideally, MobX observers would be used to detect when certain properties are being used and automatically figure out which endpoints to load. Unfortunately, this strategy doesn't work when computed properties with keepAlive are used (search indices).