jasmine-matchers.d.ts 372 B

123456789101112
  1. declare namespace jasmine {
  2. interface Matchers<T> {
  3. toHaveText(actual: any, expectationFailOutput?: any): jasmine.CustomMatcher;
  4. toHaveCssClass(expected: any): boolean;
  5. }
  6. }
  7. /*
  8. Copyright 2017-2018 Google Inc. All Rights Reserved.
  9. Use of this source code is governed by an MIT-style license that
  10. can be found in the LICENSE file at http://angular.io/license
  11. */