s3-uploading
Version:
The small lib which allows to upload directory to AWS S3.
22 lines (19 loc) • 571 B
JavaScript
const ignores = ['/node_modules/', '/fixtures/', '__mocks__']
const testDir = ['src/**/*.js']
module.exports = {
collectCoverageFrom: [...testDir],
testMatch: ['**/__tests__/**/*.js'],
testPathIgnorePatterns: [...ignores],
coveragePathIgnorePatterns: [...ignores, 'src/(umd|cjs|esm)-entry.js$'],
transformIgnorePatterns: ['[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$'],
coverageDirectory: './coverage',
collectCoverage: true,
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100
}
}
}