Skip to content

Instantly share code, notes, and snippets.

@IAfanasovMob
Created October 8, 2019 11:52
Show Gist options
  • Select an option

  • Save IAfanasovMob/20005ccb54d3d4f27c33ab322d9ab1c3 to your computer and use it in GitHub Desktop.

Select an option

Save IAfanasovMob/20005ccb54d3d4f27c33ab322d9ab1c3 to your computer and use it in GitHub Desktop.
should make http call spec
it(`should make http call to proper GitHub API url when show button is clicked`, () => {
component.userName = 'IAfanasov';
fixture.debugElement.query(By.css('button')).nativeElement.click();
expect(() => httpMock.expectOne('https://api.github.com/users/IAfanasov/starred'))
.not.toThrow();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment