Skip to content

Instantly share code, notes, and snippets.

@DMeechan
Created June 18, 2018 15:14
Show Gist options
  • Save DMeechan/debf0eab4e0458e8edbc51a993c1af34 to your computer and use it in GitHub Desktop.
Save DMeechan/debf0eab4e0458e8edbc51a993c1af34 to your computer and use it in GitHub Desktop.
DevOps Course Chapter 8 - Automated testing
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