Last active
June 5, 2018 11:32
-
-
Save michaelilyin/2449be56e90772684c3c642ccc40b66d to your computer and use it in GitHub Desktop.
Angular testing
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
describe('Person class', () => { | |
it('should provide full name', () => { | |
const person = new Person('John', 'Smith'); | |
expect(person.fullName).toBeTruthy(); | |
expect(person.fullName).toEqual('John Smith') | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment