Created
June 18, 2018 15:14
-
-
Save DMeechan/debf0eab4e0458e8edbc51a993c1af34 to your computer and use it in GitHub Desktop.
DevOps Course Chapter 8 - Automated testing
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
describe("string length", function() { | |
it('should return number of characters in a string', function() { | |
"Hello".length.should.equal(5) | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment