This is the frontend for the Xpanse project which allows cloud service providers to register managed services to the service catalog and also for end users to deploy services from the service catalog and manage them.
Documentation can be found on the project website here
We use jest
framework for unit testing React components.
To add unit tests, add a folder called __tests__
folder closet to the component under test. This is also the
recommendation from jest
framework. The framework automatically loads all tests under __tests__
folder.
Tests can be executed using the command below:
npm run test
To run tests from IDE, ensure the config file is passed to the executor.
All third-party related content is listed in the DEPENDENCIES file.