Last active
August 18, 2016 01:19
-
-
Save jfraboni/83b694216bbae76bb42f06d222dad175 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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