Created
July 9, 2017 11:34
-
-
Save Kamilnaja/811549e3b7330c0f418206ebd4cd555a to your computer and use it in GitHub Desktop.
Karma - test class
This file contains 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
it('should accept values in the constructor', () => { | |
let todo = new Todo({ | |
title: 'hello', | |
complete: true | |
}); | |
expect(todo.title).toEqual('hello'); | |
expect(todo.complete).toEqual(true); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment