Skip to content

Instantly share code, notes, and snippets.

@paritosh64ce
Created April 19, 2018 16:59
Show Gist options
  • Save paritosh64ce/c84b3d9e29bf808ae8930cfe1f870f3e to your computer and use it in GitHub Desktop.
Save paritosh64ce/c84b3d9e29bf808ae8930cfe1f870f3e to your computer and use it in GitHub Desktop.
TDD Angular component with Jasmine using @angular/cli
it('should do addition', () => {
component.param1 = 5;
component.param2 = 7;
component.add();
expect(component.result).toBe(12);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment