残り火ジェネレーターによって生成されたコードをほとんど変更していません
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);
});
});
});
})();
2つの奇妙なことがあります:
- console.log はターミナルに何も出力しません
それは0テストを示しています:
「mocha:all」(mocha) タスクの実行 テスト: http:// . .*.*/index.html
0 テスト完了 (1 ミリ秒)
エラーなしで完了。