代码之家  ›  专栏  ›  技术社区  ›  Andrea Carraro

对编译的包运行测试

  •  0
  • Andrea Carraro  · 技术社区  · 6 年前

    作为一个 JS库 作者一 我的源代码格式如下:

    • 平民( /lib/index.js )
    • /es/index.js )
    • UMD公司( /dist/index.js

    我的单元测试覆盖了我的源代码 生成工作包。

    然后我读了 this enlightening post 对捆绑版本的部分单元测试 图书馆的。

    他们引入了 test-build-prod 用一个 special configuration file 哪一个 在使用Jest指向捆绑文件的测试中 moduleNameMapper option .

    在我的小型开源项目中进行复制很酷,但有点难以承受。

    任何其他工具或更便携的解决方案 我应该考虑对编译后的包在源代码上运行相同的测试吗?

    1 回复  |  直到 6 年前
        1
  •  0
  •   Andrea Carraro    6 年前

    我将分享我最终采用的解决方案,这与React团队采用的解决方案相同,但规模较小。

    我加了一个特别的 哪一个 对每个编译包运行一次单元测试 :

    {
        "test:bundles": "jest --config ./jest/es.config.js && jest --config ./jest/lib.config.js && jest --config ./jest/dist.config.js"
    }
    

    扩展默认Jest配置 并宣布 moduleNameMapper 对象加上 rootDir 性质如下:

    // jest/lib.config.js
    const pkg = require('../package.json');
    
    module.exports = Object.assign({}, pkg.jest, {
      rootDir: '../',
      moduleNameMapper: {
        '/src/index$': '<rootDir>/lib/index', // path of "CommonJS" bundle
      },
    });
    

    将确保 用于源代码的相同测试 将运行 对导出的包 Jest将转换import语句 运行时类似:

    import myLibrary from './src/index';
    // transformed into:
    import myLibrary from '../lib/index';
    

    唯一需要注意的是 通过 模块映射器

    如果 import from './index' import from '../src/index' .