mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
6 lines
258 B
JavaScript
6 lines
258 B
JavaScript
module.exports = {
|
|
transform: { '^.+\\.(js|jsx|ts|tsx)$': ['babel-jest', { presets: ['next/babel'] }] },
|
|
testEnvironment: 'node',
|
|
testRegex: '/tests/.*\\.(test|spec)?\\.(ts|tsx)$',
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
|
};
|