- Published on
mocha.jsでテストを一部skipする方法
Javascriptのテスト、特にmocha.jsで一部のテストを無視したい時があると思います。
そんな時は、下記のようにdescribe
にskip
をつけると囲まれたテスト群を無視して、
テストを実行することができます。
describe.skip('Array', function () { describe('#indexOf()', function () { it('should return -1 when the value is not present', function () { assert.equal([1, 2, 3].indexOf(4), -1); }); }); });
また、it単位でスキップする場合は、itをxit
にすることでskipできます。
describe('Array', function () { // これだけskip xit('should return -1 when the value is not present', function () { assert.equal([1, 2, 3].indexOf(4), -1); }); it('should return -1', function () { assert.equal([1, 2, 3].indexOf(6), -1); }); });