我的设置
- Win7/64位
- Wamp 服务器
- 崇高文本 2
我做了什么...
- 通过红宝石加载茉莉花(茉莉花初始化)
- 冉耙(耙茉莉)
- 删除了所有默认的公共 javascript、规范文件和帮助文件。
- 将 jquery 和 jasmine-jquery 添加到“helpers”目录
- 打开浏览器,启动 liveReload 并运行以下测试...
...其中,只有“ readFixtures() ”通过了。所有其他人都失败了。什么?请指教!
“ readFixtures() ” 测试完美运行...
describe("test read fixtures", function() {
it("should be able to read fixtures", function() {
// expect(readFixtures()).toBeDefined();
expect(readFixtures()).toBeDefined();
});
});
“ loadFixtures() ” 测试返回“预期未定义的定义”。
describe("test load fixtures", function() {
it("should be able to load fixtures", function() {
// expect(loadFixtures()).toBeDefined();
expect(loadFixtures()).toBeDefined();
});
});
“ setFixtures() ” 测试返回“预期未定义的定义”。
describe("test set fixtures", function() {
it("should be able to set fixtures", function() {
// expect(setFixtures()).toBeDefined();
expect(setFixtures()).toBeDefined();
});
});