react-code-dataset / spectrum /jest.config.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
// The Jest configuration
const path = require('path');
module.exports = {
setupTestFrameworkScriptFile: path.resolve(
__dirname,
'./shared/testing/setup-test-framework'
),
globalSetup: path.resolve(__dirname, './shared/testing/setup'),
globalTeardown: path.resolve(__dirname, './shared/testing/teardown'),
testPathIgnorePatterns: ['/node_modules/', '/mutations/'],
testURL: 'http://localhost/',
};