Bespoken Test SDK Documentation

This documentation reviews how to work with the Bespoken Test SDK

To use the Bespoken Test SDK, the primary class to use is the Client.

Here is a simple example:

const Client = require('@bespoken-sdk/test-sdk');

const client = new Client('BESPOKEN-API-KEY')
client.runTestSuite('TEST-SUITE-NAME').then((testResult) => {
  console.info('My test ran with result: ' + testResult.status)
})

Read about the Client class in-depth here.