fix: update path

This commit is contained in:
alxshelepenok 2019-05-09 00:56:56 +03:00
parent 32351b33c2
commit 89192b70ae

View File

@ -3,12 +3,12 @@
module.exports = { module.exports = {
rootDir: '../', rootDir: '../',
transform: { transform: {
'^.+\\.js?$': '<rootDir>/tests/jest-preprocess.js' '^.+\\.js?$': '<rootDir>/jest/jest-preprocess.js'
}, },
testMatch: ['**/__tests__/**/*.js', '**/?(*.)test.js'], testMatch: ['**/__tests__/**/*.js', '**/?(*.)test.js'],
moduleNameMapper: { moduleNameMapper: {
'.+\\.(css|styl|less|sass|scss)$': 'identity-obj-proxy', '.+\\.(css|styl|less|sass|scss)$': 'identity-obj-proxy',
'.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': '<rootDir>/tests/__mocks__/fileMock.js' '.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': '<rootDir>/jest/__mocks__/fileMock.js'
}, },
testPathIgnorePatterns: ['node_modules', '.cache', 'public'], testPathIgnorePatterns: ['node_modules', '.cache', 'public'],
transformIgnorePatterns: [ transformIgnorePatterns: [
@ -18,5 +18,5 @@ module.exports = {
__PATH_PREFIX__: '' __PATH_PREFIX__: ''
}, },
testURL: 'http://localhost/', testURL: 'http://localhost/',
setupFiles: ['<rootDir>/tests/loadershim.js'] setupFiles: ['<rootDir>/jest/loadershim.js']
}; };