@angular-package/testing
Version:
Jasmine unit testing wrapper with additional custom testing features.
1 lines • 386 B
JavaScript
import{Expect}from"../expect.class";import{TestingExpect}from"../testing-expect.class";import{TestingExpectToHaveBeenCalled}from"./testing-expect-to-have-been-called.class";export class TestingExpectToHaveBeen extends Expect{get called(){return this.toHaveBeenCalled}toHaveBeenCalled;constructor(e=new TestingExpect){super(e),this.toHaveBeenCalled=new TestingExpectToHaveBeenCalled(e)}}