UNPKG

@moty66/crestron-cip

Version:

NodeJS module to communicate with Crestron processors through CIP (Cresnet over IP) protocol

26 lines (25 loc) 503 B
module.exports = { preset: 'ts-jest', testEnvironment: 'node', roots: ['<rootDir>/src', '<rootDir>/tests'], testMatch: [ '**/__tests__/**/*.ts', '**/?(*.)+(spec|test).ts' ], transform: { '^.+\\.ts$': 'ts-jest', }, collectCoverageFrom: [ 'src/**/*.ts', '!src/**/*.d.ts', '!src/index.ts' ], coverageDirectory: 'coverage', coverageReporters: [ 'text', 'lcov', 'html' ], setupFilesAfterEnv: ['<rootDir>/tests/setup.ts'], testTimeout: 10000 };