5

我目前使用 Karma 作为我的 Webpack 测试运行器。我注意到不包含测试的简单测试文件给了我 92.86% 的语句覆盖率、50% 的分支覆盖率、100% 的函数覆盖率和 92.86% 的行覆盖率。

describe('tests.js', function () {

});

当我检查缺少覆盖的地方时,我看到了这段代码(第 10 行),它由 Webpack 注入到我的模块中,没有被测试覆盖:

if(installedModules[moduleId])
    return installedModules[moduleId].exports;

我无法对此进行测试,因为 Webpack 正在将此代码注入到模块中。那么如何阻止此类信息包含在覆盖率报告中呢?

覆盖率报告给我的整个渲染文件如下:

/******/ (function(modules) { // webpackBootstrap
/******/    // The module cache
/******/    var installedModules = {};

/******/    // The require function
/******/    function __webpack_require__(moduleId) {

/******/        // Check if module is in cache
/******/        Iif(installedModules[moduleId])
/******/            return installedModules[moduleId].exports;

/******/        // Create a new module (and put it into the cache)
/******/        var module = installedModules[moduleId] = {
/******/            exports: {},
/******/            id: moduleId,
/******/            loaded: false
/******/        };

/******/        // Execute the module function
/******/        modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);

/******/        // Flag the module as loaded
/******/        module.loaded = true;

/******/        // Return the exports of the module
/******/        return module.exports;
/******/    }


/******/    // expose the modules object (__webpack_modules__)
/******/    __webpack_require__.m = modules;

/******/    // expose the module cache
/******/    __webpack_require__.c = installedModules;

/******/    // __webpack_public_path__
/******/    __webpack_require__.p = "/_karma_webpack_//";

/******/    // Load entry module and return exports
/******/    return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports) {

    'use strict';

    describe('tests.js', function () {});

/***/ }
/******/ ]);

我不希望将 jQuery 和 Webpack 项之类的内容包含在代码覆盖率报告中。如何将上述代码之类的内容排除在我的测试之外?因为没有测试且没有导入/要求的测试文件应该是 100% 的覆盖率。

4

0 回答 0