(credentials: { username: string; password: string })
| 9 | @Injectable() |
| 10 | class AuthService { |
| 11 | login(credentials: { username: string; password: string }) { |
| 12 | return of(true); |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | class AuthServiceMock { |
no outgoing calls
no test coverage detected