私のセットアップ
- Win7/64ビット
- ワンプサーバー
- サブライムテキスト 2
私がしたこと...
- ruby 経由でロードされたジャスミン(jasmine init)
- 蘭熊手(熊手ジャスミン)
- デフォルトのパブリック 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();
});
});