Last active
April 19, 2018 17:05
-
-
Save paritosh64ce/18e87a77c67dec20578facbd7461da21 to your computer and use it in GitHub Desktop.
TDD Angular component with Jasmine using @angular/cli
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
constructor(private mathSvc: MathService) { } | |
subtract() { | |
this.result = this.mathSvc.subtract(this.param1, this.param2); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment