Skip to content

Instantly share code, notes, and snippets.

@kmassada
Created January 7, 2016 12:56
Show Gist options
  • Save kmassada/d9dd59474278ebbba4cb to your computer and use it in GitHub Desktop.
Save kmassada/d9dd59474278ebbba4cb to your computer and use it in GitHub Desktop.
mocha basic test
var assert = require('assert');
describe('String#split', function(){
it('should return an array', function(){
assert(Array.isArray('a,b,c'.split(',')));
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment