4

我有点坚持这一点。我有一个由middleman、karma、jasmine、babeljs 组成的复杂堆栈来构建一个静态网站。

考虑到这是一个实验,我想将 ES6 与模块一起使用。但是,在中间人方面一切都很好,我很难设置 karma + jasmine 进行测试。

主要问题在于 babel:如果将其设置为使用modules: "ignore",则必须手动使用规范中System.import所有模块,这是我不想要的。我想使用 ES6 语法,但如果我设置modules: "system",babeljs 会将我所有的测试包装成System.register,如下所示:

System.register(["mymodule"], function (_export) {
  "use strict";

  var Mymodule;
  return {
    setters: [function (_mymodule) {
      Mymodule = _mymodule["default"];
    }],
    execute: function () {

      console.log("I'm here!!!");
      console.log(Mymodule);

      describe("Mymodule", function () {

        it("has version", function () {
          expect(Mymodule.VERSION).toEqual("1.0.0");
        });


      });
    }
  };
});

所以测试不会自动执行。然后我创建了以下脚本来解决它(在包含所有规范之后包含它):

basePath = "/base/spec/"

modules = []

for own fileName, fileHash of window.__karma__.files
  if fileName.indexOf(basePath) is 0
    isRunner   = fileName.indexOf("spec_runner") >= 0
    isRunner ||= fileName.indexOf("spec_helper") >= 0
    unless isRunner
      moduleName = fileName.replace(basePath, "")
      moduleName = moduleName.replace(".js", "")
      modules.push(path: fileName, name: moduleName)

mappedModules = {}
baseSpecsPath = "http://localhost:9876"

for module in modules
  mappedModules[module.name] = baseSpecsPath + module.path

System.config
  baseURL: "http://localhost:4567/javascripts/"
  map:     mappedModules

for module in modules
  System.import(module.name)

这段代码很简单:它为 SystemJS 准备地图配置,我可以从我的应用程序(位于http://localhost:4567)中正确加载模块,并在 System.register 中包装测试(位于http://localhost:9876) .

但是,我的测试没有运行,也没有报告错误。更糟糕的是,我正确地收到了记录“我在这里!!!”的消息 并且 Mymodule 已正确登录控制台。我什至尝试记录describe的值,它是一个Suite对象。那么,到底为什么我的测试没有运行?(该it块永远不会运行)

我有什么解决方案?我可以稍微更改设置以使其正常工作,但我想保留以下内容:Middleman,ES6 模块,没有动态模块加载(我的所有模块最终都暴露在单个文件中或需要带有一堆<script>标签),茉莉花

4

1 回答 1

2

我终于解决了这个问题。我将此文件包含在最后一个文件中:

basePath = "/base/spec/"

modules = []

for own fileName, fileHash of window.__karma__.files
  if fileName.indexOf(basePath) is 0
    isRunner   = fileName.indexOf("spec_runner") >= 0
    isRunner ||= fileName.indexOf("spec_helper") >= 0
    unless isRunner
      moduleName = fileName.replace(basePath, "")
      moduleName = moduleName.replace(".js", "")
      modules.push(path: fileName, name: moduleName)

mappedModules = {}
baseSpecsPath = "http://localhost:9876"
specModules   = []

for module in modules
  mappedModules[module.name] = baseSpecsPath + module.path
  specModules.push(module.name)

System.config
  baseURL: "http://localhost:4567/javascripts/"
  map:     mappedModules

moduleImports = specModules.map (moduleName) ->
  System.import(moduleName)

Promise.all(moduleImports).then ->
  window.__karma__.start     = window.__lastKarmaStart__
  window.__lastKarmaStart__  = null
  delete window.__lastKarmaStart__
  window.__karma__.start()

它执行以下操作:

  • 临时禁用业力启动功能,将其替换为空的
  • 获取存储在 a 中的每个测试System.register,运行System.import所有测试(用 等待它们Promise.all
  • 在所有导入完成后,它附加__karma__start并执行它,运行 Jasmine
于 2015-08-20T20:29:44.023 回答