Skip to content

Instantly share code, notes, and snippets.

@a0viedo
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a0viedo/47633fa427c8e9ce19ab to your computer and use it in GitHub Desktop.
Save a0viedo/47633fa427c8e9ce19ab to your computer and use it in GitHub Desktop.
describe('test something', function(){
it('should return correct value', function(done){
server.connect(cs , function(err, data) {
expect(err).to.be.null;
expect(data.connected).to.be.true;
done();
});
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment