caffco/get-video-duration

View on GitHub
jest.config.js

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-env commonjs, node */

module.exports = {
  clearMocks: true,
  collectCoverage: true,
  moduleFileExtensions: ['js', 'ts'],
  testEnvironment: 'node',
  testMatch: ['**/*.test.ts'],
  transform: {
    '^.+\\.ts$': 'ts-jest',
  },
  verbose: true,
}