Plugin SDK
Last updated
Was this helpful?
The Plugin SDK provides a framework for building and testing plugins efficiently. It simplifies the development process by offering essential tools and utilities.
You can access the Plugin SDK from the GitHub repository: Plugin SDK GitHub Repository
To get started, clone the repository and follow the setup instructions provided in the README.
To build your project, execute the following command in the root folder of your project:
npm run buildTo run unit tests, execute the following command in the root folder of your project:
npm run testFocus on maximizing code coverage through unit tests.
Mock any possible inbound queries to ensure reliable test results.
Last updated
Was this helpful?
Was this helpful?