Meteorとmeteor-mocha-webでテストを動かそうとしていますが、テストをmochaに見つけてもらえません。

$ meteor add mike:mocha@0.4.4 # 別の問題を回避するため現時点での最新版をインストール
$ mkdir -p tests/server/unit

サンプルのテストをコピペして、確実に落ちるように修正:

tests/server/unit/test.js

if (!(typeof MochaWeb === 'undefined')){
  MochaWeb.testOnly(function(){
    describe("Server initialization", function(){
      it("should insert players into the database after server start", function(){
        chai.assert(0 > 0);
      });
    });
  });
}

meteorを実行

$ meteor

アプリの画面をブラウザで開くと右上に青い丸が出て、詳細を見ると "0 tests passed in 0 ms" と出ています。

何か手順を間違えているでしょうか。