@dabapps/django-s3-file-upload
Version:
Upload files from the browser to S3 - client side implementation
20 lines (18 loc) • 464 B
JavaScript
const helpersPattern = '<rootDir>/tests/helpers/*';
module.exports = {
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100,
},
},
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
testRegex: '(/tests/.*|\\.(test|spec))\\.(ts|tsx|js|jsx)$',
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
testPathIgnorePatterns: [helpersPattern],
coveragePathIgnorePatterns: [helpersPattern],
};