Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created July 9, 2017 11:34
Show Gist options
  • Save Kamilnaja/811549e3b7330c0f418206ebd4cd555a to your computer and use it in GitHub Desktop.
Save Kamilnaja/811549e3b7330c0f418206ebd4cd555a to your computer and use it in GitHub Desktop.
Karma - test class
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