var expect = require('chai').expect; describe('Dummy tests', function() { it('should include number 2', function() { expect([1, 2, 3]).to.include(2); }); it('should include the string "foo"', function() { expect('foobar').to.contain('foo'); }); it('should be true', function() { expect(false).to.be.true; }); });