module.exports = { moduleFileExtensions: [ 'js', 'jsx', 'json', 'vue' ], transform: { "\\.(gql|graphql)$": "/node_modules/jest-transform-graphql", "^.+\\.js$": "/node_modules/babel-jest", '^.+\\.vue$': '/node_modules/vue-jest', '.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub' }, modulePaths: [ "/src", "/node_modules" ], transformIgnorePatterns: [ '/node_modules/' ], moduleNameMapper: { '^@/(.*)$': '/src/$1' }, snapshotSerializers: [ '/node_modules/jest-serializer-vue' ], testMatch: [ '**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)' ], testURL: 'http://localhost/', watchPlugins: [ 'jest-watch-typeahead/filename', 'jest-watch-typeahead/testname' ] }