Skip to content
Snippets Groups Projects
Commit 22ea8c68 authored by Lucas Gabriel Lima's avatar Lucas Gabriel Lima
Browse files

add 'expect' and 'should' modules

parent 29ead233
No related branches found
No related tags found
1 merge request!3Tests
var assert = require('chai').assert;
var expect = require('chai').expect;
var should = require('chai').should() //actually call the function
it('doesn\'t do anything', function(){
var foo = 'bar';
it('doesn\'t do anything', function(){
assert.typeOf(foo, 'string', 'foo is a string');
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment