Guest User

Untitled

a guest
Jul 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. LibrarySpec = JS.Test.describe('Library', function() {
  2. describe('someFunction', function() {
  3. it('is awesome', function() {
  4. assertEqual( 'awesome', someFunction() )
  5. })
  6. })
  7.  
  8. describe('anotherFunction', function() {
  9. it('is awesome', function() {
  10. assertEqual( 'awesome', anotherFunction() )
  11. })
  12. })
  13. })
Add Comment
Please, Sign In to add comment