mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
af57378852
Remove globals from video implementations to allow further refactoring. Experiment with testing video modes.
27 lines
531 B
JavaScript
27 lines
531 B
JavaScript
module.exports = {
|
|
'moduleNameMapper': {
|
|
'^js/(.*)': '<rootDir>/js/$1',
|
|
'^test/(.*)': '<rootDir>/test/$1',
|
|
},
|
|
'roots': [
|
|
'js/',
|
|
'test/',
|
|
],
|
|
'testMatch': [
|
|
'**/?(*.)+(spec|test).+(ts|js)'
|
|
],
|
|
|
|
'transform': {
|
|
'^.+\\.js$': 'babel-jest',
|
|
'^.+\\.ts$': 'ts-jest'
|
|
},
|
|
'setupFilesAfterEnv': [
|
|
'<rootDir>/test/jest-setup.js'
|
|
],
|
|
'coveragePathIgnorePatterns': [
|
|
'/node_modules/',
|
|
'/js/roms/',
|
|
'/test/',
|
|
]
|
|
};
|