This application is a ReactJS component library for the Kyma, based on the component-library-starter.
You can see the components and their properties on the Console page.
To import the library into an application, run the following command:
npm install --save @kyma-project/react-componentsAfter the build, the webpack creates the lib folder.
Run once:
npm run buildThen run the watch script:
npm run build:watchJest Snapshots manages all of the testing. Jest Snapshots places the tests in the __tests__ folders, on the component level.
To run the tests once:
npm testTo run the watch script:
npm run test:watchTo view the coverage report:
npm run test:coverage:report