Add a couple more unit tests

This commit is contained in:
Joshua Perry 2014-11-05 10:14:28 -07:00
parent b4c0424ffb
commit 867563b0db

View file

@ -92,6 +92,7 @@ describe('expect', function () {
expect(foo).to.exist();
expect(foo).to.exist().and.contain('bar');
expect(foo).to.exist.and.contain('bar');
});
it('arguments', function(){
@ -384,6 +385,7 @@ describe('expect', function () {
expect('').to.be.empty();
expect('').to.be.empty().and.exist;
expect('').to.be.empty.and.exist;
err(function(){
expect('').not.to.be.empty;