Skip to content

Instantly share code, notes, and snippets.

@jfraboni
Last active August 18, 2016 01:19
Show Gist options
  • Save jfraboni/83b694216bbae76bb42f06d222dad175 to your computer and use it in GitHub Desktop.
Save jfraboni/83b694216bbae76bb42f06d222dad175 to your computer and use it in GitHub Desktop.
suite("strings", function(){
test("toDashCase", function(done){
expect(toDashCase('Hello World')).to.equal('hello-world');
expect(toDashCase('Should Work With Many Words')).to.equal('should-work-with-many-words');
done();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment