Skip to content

Testing Guideline

Chloe edited this page Apr 29, 2024 · 6 revisions

Testing Strategy

This is to still be agreed on as of writing this

Testing your code is crucial for ensuring its reliability and functionality.

Generally when testing we'd like to see:

  • that everything meets the requirements that guided its design and development
  • it responds correctly to different kinds of inputs
  • performs its functions within a resonable amount of time
  • is usable enough (for time being)
  • can be installed and run in its intended envs

Testing our own Platform

yarn test 

Or to run the tests without the e2e running:

yarn backstage-cli repo test

If it works

git add --all
git commit -m "ADD: <What has been added>"

git push

And then at your GitHub for https://github.com/codeuniversity/code-idp click Create pull request.

Clone this wiki locally