代码之家  ›  专栏  ›  技术社区  ›  darkpool

测试React API-意外的令牌错误

  •  2
  • darkpool  · 技术社区  · 6 年前

    我有一个基本的 React 应用程序创建使用 create-react-app . 我正试着开始 Pact 使用 Javascript implementation guide .

    import { Pact } from '@pact-foundation/pact';
    
    it('works', () => {
      expect(1).toEqual(1);
    });
    

    运行时 npm run pactTest

    Jest encountered an unexpected token
    
    This usually means that you are trying to import a file which Jest cannot parse, e.g. it's not plain JavaScript.
    
    By default, if Jest sees a Babel config, it will use that to transform your files, ignoring "node_modules".
    
    Here's what you can do:
     • To have some of your "node_modules" files transformed, you can specify a custom "transformIgnorePatterns" in your config.
     • If you need a custom transformation specify a "transform" option in your config.
     • If you simply want to mock your non-JS modules (e.g. binary assets) you can stub them out with the "moduleNameMapper" config option.
    
    You'll find more details and examples of these config options in the docs:
    https://jestjs.io/docs/en/configuration.html
    
    Details:
    
    /path/to/file.test.pact.js:1
    ({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,global,jest){import { Pact } from '@pact-foundation/pact';
                                                                                                    ^
    
    SyntaxError: Unexpected token {
    
      at ScriptTransformer._transformAndBuildScript (node_modules/jest-runtime/build/script_transformer.js:403:17)
    

    const Pact = require('@pact-foundation/pact'); 那就行了。

    require import 因为我使用 全世界 反应 项目。

    Javascript实现指南 使用 import { Pact } from '@pact-foundation/pact';

    1 回复  |  直到 6 年前
        1
  •  1
  •   Hemadri Dasari    6 年前

    在jest.config.js中的transform对象之后添加下面的config

      '^.+\\.js$': 'babel-jest
    

    下面是你参考的例子

      module.exports = {
         moduleFileExtensions: ['js', 'jsx', 'json', 'vue'],
         transform: {
             '.+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$':
             'jest-transform-stub',
             '^.+\\.(js|jsx)?$': 'babel-jest'
         },
         moduleNameMapper: {
             '^@/(.*)$': '<rootDir>/src/$1'
         },
         snapshotSerializers: ['jest-serializer-vue'],
            testMatch: [
                '<rootDir>/(tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx))'
         ],
         transformIgnorePatterns: ['<rootDir>/node_modules/']
      };