Skip to content

Instantly share code, notes, and snippets.

@valentin-radulescu-hs
Created October 1, 2016 19:12
Show Gist options
  • Save valentin-radulescu-hs/8fea9460432adb5a0192400d8b1dfaf7 to your computer and use it in GitHub Desktop.
Save valentin-radulescu-hs/8fea9460432adb5a0192400d8b1dfaf7 to your computer and use it in GitHub Desktop.

Revisions

  1. valentin-radulescu-hs created this gist Oct 1, 2016.
    15 changes: 15 additions & 0 deletions test.js
    Original 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;
    });
    });