Skip to content

Instantly share code, notes, and snippets.

@LayZeeDK
Created August 15, 2018 20:36
Show Gist options
  • Save LayZeeDK/0b0434438ad690ba6db215542ab3dc83 to your computer and use it in GitHub Desktop.
Save LayZeeDK/0b0434438ad690ba6db215542ab3dc83 to your computer and use it in GitHub Desktop.
Heroes: Testing addition of a hero
it(`delegates to ${HeroService.name}`, () => {
const hawkeye = 'Hawkeye (Kate Bishop)';
container.add(hawkeye);
expect(heroServiceStub.addHero).toHaveBeenCalledTimes(1);
expect(heroServiceStub.addHero).toHaveBeenCalledWith({ name: hawkeye });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment