我正在开发一个带有模块的框架,这些模块使用 Promise 异步加载。这些模块包含我想为其创建测试的方法(对于这个问题,可以假设它们是同步的)。
目前,我的代码类似于以下内容:
describe("StringHelper", function() {
describe("convertToCamelCase()", function() {
it("should convert snake-cased strings to camel-case", function(done) {
Am.Module.load("Util").then(function() {
var StringHelper = Am.Module.get("Util").StringHelper;
//Test here
done();
});
});
});
describe("convertToSnakeCase()", function() {
it("should convert camel-cased strings to snake case.", function(done) {
Am.Module.load("Util").then(function() {
var StringHelper = Am.Module.get("Util").StringHelper;
//Another test here
done();
});
});
});
});
鉴于这Am.Module.load()
本质上是对 RequireJS 的调用,以这种方式包装以返回一个承诺,因此,应该只在开始时加载一次,我该如何重写上面的内容?
我基本上希望有这样的东西:
Am.Module.load("Util").then(function() {
var StringHelper = Am.Module.get("Util").StringHelper;
describe("StringHelper", function() {
describe("convertToCamelCase()", function() {
it("should convert snake-cased strings to camel-case", function(done) {
//Test here
done();
});
});
describe("convertToSnakeCase()", function() {
it("should convert camel-cased strings to snake case.", function(done) {
//Another test here
done();
});
});
});
});
不幸的是,上述方法不起作用 - 测试根本没有被执行。记者甚至没有展示这部分describe("StringHelper")
。有趣的是,在玩弄之后,只有当所有测试都以这种(第二个代码片段)方式编写时才会发生这种情况。只要至少有一个以第一种格式编写的测试,测试就会正确显示。