Created
          October 1, 2016 19:12 
        
      - 
      
 - 
        
Save valentin-radulescu-hs/8fea9460432adb5a0192400d8b1dfaf7 to your computer and use it in GitHub Desktop.  
Revisions
- 
        
valentin-radulescu-hs created this gist
Oct 1, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ 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; }); });