diff --git a/lib/chai/core/assertions.js b/lib/chai/core/assertions.js index f2d2153b8..cabcf622f 100644 --- a/lib/chai/core/assertions.js +++ b/lib/chai/core/assertions.js @@ -33,16 +33,17 @@ module.exports = function (chai, _) { * - same * - but * - does + * - still * * @name language chains * @namespace BDD * @api public */ - [ 'to', 'be', 'been' - , 'is', 'and', 'has', 'have' - , 'with', 'that', 'which', 'at' - , 'of', 'same', 'but', 'does' ].forEach(function (chain) { + [ 'to', 'be', 'been', 'is' + , 'and', 'has', 'have', 'with' + , 'that', 'which', 'at', 'of' + , 'same', 'but', 'does', 'still' ].forEach(function (chain) { Assertion.addProperty(chain); }); diff --git a/test/expect.js b/test/expect.js index 3a33f7fae..9b4f485b8 100644 --- a/test/expect.js +++ b/test/expect.js @@ -230,10 +230,10 @@ describe('expect', function () { expect([1, 2, 3])[chain].contains(1); } - [ 'to', 'be', 'been' - , 'is', 'and', 'has', 'have' - , 'with', 'that', 'which', 'at' - , 'of', 'same', 'but', 'does' ].forEach(test); + [ 'to', 'be', 'been', 'is' + , 'and', 'has', 'have', 'with' + , 'that', 'which', 'at', 'of' + , 'same', 'but', 'does', 'still' ].forEach(test); }); describe("fail", function() { diff --git a/test/should.js b/test/should.js index 0bfe44d91..9a2400dfb 100644 --- a/test/should.js +++ b/test/should.js @@ -227,10 +227,10 @@ describe('should', function() { [1, 2, 3].should[chain].contains(1); } - [ 'to', 'be', 'been' - , 'is', 'and', 'has', 'have' - , 'with', 'that', 'which', 'at' - , 'of', 'same', 'but', 'does' ].forEach(test); + [ 'to', 'be', 'been', 'is' + , 'and', 'has', 'have', 'with' + , 'that', 'which', 'at', 'of' + , 'same', 'but', 'does', 'still' ].forEach(test); }); describe("fail", function() {