| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 | 'use strict';Object.defineProperty(exports, '__esModule', {  value: true});exports.create = exports._interface = void 0;var _Env = _interopRequireDefault(require('./Env'));var _JsApiReporter = _interopRequireDefault(require('./JsApiReporter'));var _ReportDispatcher = _interopRequireDefault(require('./ReportDispatcher'));var _Spec = _interopRequireDefault(require('./Spec'));var _Suite = _interopRequireDefault(require('./Suite'));var _Timer = _interopRequireDefault(require('./Timer'));var _createSpy = _interopRequireDefault(require('./createSpy'));var _spyRegistry = _interopRequireDefault(require('./spyRegistry'));function _interopRequireDefault(obj) {  return obj && obj.__esModule ? obj : {default: obj};}/** * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */// This file is a heavily modified fork of Jasmine. Original license:/*Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.Permission is hereby granted, free of charge, to any person obtaininga copy of this software and associated documentation files (the"Software"), to deal in the Software without restriction, includingwithout limitation the rights to use, copy, modify, merge, publish,distribute, sublicense, and/or sell copies of the Software, and topermit persons to whom the Software is furnished to do so, subject tothe following conditions:The above copyright notice and this permission notice shall beincluded in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OFMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE ANDNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BELIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTIONOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTIONWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*//* eslint-disable sort-keys, local/prefer-spread-eventually, local/prefer-rest-params-eventually */const create = function (createOptions) {  const j$ = {...createOptions};  j$._DEFAULT_TIMEOUT_INTERVAL = createOptions.testTimeout || 5000;  j$.getEnv = function () {    const env = (j$.currentEnv_ = j$.currentEnv_ || new j$.Env()); //jasmine. singletons in here (setTimeout blah blah).    return env;  };  j$.createSpy = _createSpy.default;  j$.Env = (0, _Env.default)(j$);  j$.JsApiReporter = _JsApiReporter.default;  j$.ReportDispatcher = _ReportDispatcher.default;  j$.Spec = _Spec.default;  j$.SpyRegistry = _spyRegistry.default;  j$.Suite = _Suite.default;  j$.Timer = _Timer.default;  j$.version = '2.5.2-light';  return j$;}; // Interface is a reserved word in strict mode, so can't export it as ESMexports.create = create;const _interface = function (jasmine, env) {  const jasmineInterface = {    describe(description, specDefinitions) {      return env.describe(description, specDefinitions);    },    xdescribe(description, specDefinitions) {      return env.xdescribe(description, specDefinitions);    },    fdescribe(description, specDefinitions) {      return env.fdescribe(description, specDefinitions);    },    it() {      return env.it.apply(env, arguments);    },    xit() {      return env.xit.apply(env, arguments);    },    fit() {      return env.fit.apply(env, arguments);    },    beforeEach() {      if (typeof arguments[0] !== 'function') {        throw new Error(          'Invalid first argument. It must be a callback function.'        );      }      return env.beforeEach.apply(env, arguments);    },    afterEach() {      if (typeof arguments[0] !== 'function') {        throw new Error(          'Invalid first argument. It must be a callback function.'        );      }      return env.afterEach.apply(env, arguments);    },    beforeAll() {      if (typeof arguments[0] !== 'function') {        throw new Error(          'Invalid first argument. It must be a callback function.'        );      }      return env.beforeAll.apply(env, arguments);    },    afterAll() {      if (typeof arguments[0] !== 'function') {        throw new Error(          'Invalid first argument. It must be a callback function.'        );      }      return env.afterAll.apply(env, arguments);    },    pending() {      return env.pending.apply(env, arguments);    },    fail() {      return env.fail.apply(env, arguments);    },    spyOn(obj, methodName, accessType) {      return env.spyOn(obj, methodName, accessType);    },    jsApiReporter: new jasmine.JsApiReporter({      timer: new jasmine.Timer()    }),    jasmine  };  return jasmineInterface;};exports._interface = _interface;
 |