jasmineLight.d.ts 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. *
  7. */
  8. import { Jasmine } from '../types';
  9. import JsApiReporter from './JsApiReporter';
  10. declare const _default: {
  11. create: (createOptions: Record<string, any>) => Jasmine;
  12. interface: (jasmine: Jasmine, env: any) => {
  13. describe(description: string, specDefinitions: Function): any;
  14. xdescribe(description: string, specDefinitions: Function): any;
  15. fdescribe(description: string, specDefinitions: Function): any;
  16. it(): any;
  17. xit(): any;
  18. fit(): any;
  19. beforeEach(): any;
  20. afterEach(): any;
  21. beforeAll(): any;
  22. afterAll(): any;
  23. pending(): any;
  24. fail(): any;
  25. spyOn(obj: Record<string, any>, methodName: string, accessType?: string | undefined): any;
  26. jsApiReporter: JsApiReporter;
  27. jasmine: Jasmine;
  28. };
  29. };
  30. export = _default;
  31. //# sourceMappingURL=jasmineLight.d.ts.map