Plugin SDK

Overview

The Plugin SDK provides a framework for building and testing plugins efficiently. It simplifies the development process by offering essential tools and utilities.

Retrieving the SDK

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.

Building and Testing

To build your project, execute the following command in the root folder of your project:

npm run build

To run unit tests, execute the following command in the root folder of your project:

npm run test

Testing Guidelines

  • Focus on maximizing code coverage through unit tests.

  • Mock any possible inbound queries to ensure reliable test results.

Last updated

Was this helpful?