UNPKG

@soos-io/api-client

Version:

This is the SOOS API Client for registered clients leveraging the various integrations to the SOOS platform. Register for a free trial today at https://app.soos.io/register

11 lines (10 loc) 391 B
module.exports = { preset: "ts-jest", // Preset that is used to configure Jest to use ts-jest for ts / tsx files testEnvironment: "node", // The test environment that will be used for testing testMatch: [ "**/?(*.)+(spec|test).ts", // Matches any .ts files ending in .spec.ts or .test.ts ], transform: { "^.+\\.ts$": "ts-jest", // Transform .ts files using ts-jest }, };