mirror of
https://github.com/danog/telegram-tt.git
synced 2024-11-27 04:45:08 +01:00
13 lines
384 B
JavaScript
13 lines
384 B
JavaScript
|
module.exports = {
|
||
|
setupFilesAfterEnv: ['./tests/init.js'],
|
||
|
moduleNameMapper: {
|
||
|
'\\.(css|scss|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
|
||
|
'<rootDir>/tests/staticFileMock.js',
|
||
|
},
|
||
|
testPathIgnorePatterns: [
|
||
|
'<rootDir>/node_modules/',
|
||
|
'<rootDir>/legacy_notes_and_workbook/',
|
||
|
'<rootDir>/client/src/stylesheets/',
|
||
|
],
|
||
|
};
|