我几乎没有修改 ember 生成器生成的代码
yo ember
并稍微改变一下 test/spec/test.js
'use strict';
(function () {
describe('Give it some context', function () {
describe('maybe a bit more context here', function () {
it('should equal to the title', function () {
var title = document.title;
title.should.equal('Ember Starter Kit');
console.log(title) //doesn't output anything in the terminal
});
it('should equal to a number', function () {
1.should.equal(1);
});
});
});
})();
有两点很奇怪:
- console.log 不会在终端中输出任何内容
它显示 0 测试:
运行“mocha:all”(mocha)任务测试:http:// 。.*.*/index.html
0 个测试完成(1 毫秒)
完成,没有错误。