react-code-dataset / tsdx /jest.config.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
module.exports = {
testEnvironment: 'node',
testMatch: ['<rootDir>/**/*(*.)@(test).[tj]s?(x)'],
testPathIgnorePatterns: [
'/node_modules/', // default
'<rootDir>/templates/', // don't run tests in the templates
'<rootDir>/test/.*/fixtures/', // don't run tests in fixtures
'<rootDir>/stage-.*/', // don't run tests in auto-generated (and auto-removed) test dirs
],
};