'use strict'; let jasmine2 = (() => { var _ref = _asyncToGenerator(function*( globalConfig, config, environment, runtime, testPath ) { const reporter = new _reporter2.default(globalConfig, config, testPath); const jasmineFactory = runtime.requireInternalModule(JASMINE); const jasmine = jasmineFactory.create({ process: process, testPath: testPath }); const env = jasmine.getEnv(); const jasmineInterface = jasmineFactory.interface(jasmine, env); Object.assign(environment.global, jasmineInterface); env.addReporter(jasmineInterface.jsApiReporter); // TODO: Remove config option if V8 exposes some way of getting location of caller // in a future version if (config.testLocationInResults === true) { const originalIt = environment.global.it; environment.global.it = function() { const stack = (0, _jestUtil.getCallsite)(1, runtime.getSourceMaps()); const it = originalIt.apply(undefined, arguments); it.result.__callsite = stack; return it; }; } (0, _jasmine_async.install)(environment.global); (0, _each2.default)(environment); environment.global.test = environment.global.it; environment.global.it.only = environment.global.fit; environment.global.it.skip = environment.global.xit; environment.global.xtest = environment.global.xit; environment.global.describe.skip = environment.global.xdescribe; environment.global.describe.only = environment.global.fdescribe; if (config.timers === 'fake') { environment.fakeTimers.useFakeTimers(); } env.beforeEach(function() { if (config.resetModules) { runtime.resetModules(); } if (config.clearMocks) { runtime.clearAllMocks(); } if (config.resetMocks) { runtime.resetAllMocks(); if (config.timers === 'fake') { environment.fakeTimers.useFakeTimers(); } } if (config.restoreMocks) { runtime.restoreAllMocks(); } }); env.addReporter(reporter); runtime .requireInternalModule( _path2.default.resolve(__dirname, './jest_expect.js') ) .default({ expand: globalConfig.expand }); if (globalConfig.errorOnDeprecated) { (0, _error_on_private.installErrorOnPrivate)(environment.global); } else { // $FlowFixMe Flow seems to be confused about accessors and tries to enfoce having a `value` property. Object.defineProperty(jasmine, 'DEFAULT_TIMEOUT_INTERVAL', { configurable: true, enumerable: true, get: function() { return this._DEFAULT_TIMEOUT_INTERVAL; }, set: function(value) { this._DEFAULT_TIMEOUT_INTERVAL = value; } }); } const snapshotState = runtime .requireInternalModule( _path2.default.resolve(__dirname, './setup_jest_globals.js') ) .default({ config: config, globalConfig: globalConfig, localRequire: runtime.requireModule.bind(runtime), testPath: testPath }); if (config.setupTestFrameworkScriptFile) { runtime.requireModule(config.setupTestFrameworkScriptFile); } if (globalConfig.enabledTestsMap) { env.specFilter = function(spec) { const suiteMap = globalConfig.enabledTestsMap && globalConfig.enabledTestsMap[spec.result.testPath]; return suiteMap && suiteMap[spec.result.fullName]; }; } else if (globalConfig.testNamePattern) { const testNameRegex = new RegExp(globalConfig.testNamePattern, 'i'); env.specFilter = function(spec) { return testNameRegex.test(spec.getFullName()); }; } runtime.requireModule(testPath); yield env.execute(); const results = yield reporter.getResults(); return addSnapshotData(results, snapshotState); }); return function jasmine2(_x, _x2, _x3, _x4, _x5) { return _ref.apply(this, arguments); }; })(); var _path = require('path'); var _path2 = _interopRequireDefault(_path); var _each = require('./each'); var _each2 = _interopRequireDefault(_each); var _error_on_private = require('./error_on_private'); var _jestUtil = require('jest-util'); var _reporter = require('./reporter'); var _reporter2 = _interopRequireDefault(_reporter); var _jasmine_async = require('./jasmine_async'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : {default: obj}; } function _asyncToGenerator(fn) { return function() { var gen = fn.apply(this, arguments); return new Promise(function(resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then( function(value) { step('next', value); }, function(err) { step('throw', err); } ); } } return step('next'); }); }; } // eslint-disable-next-line import/no-extraneous-dependencies /** * Copyright (c) 2014-present, Facebook, Inc. 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. * * */ const JASMINE = require.resolve('./jasmine/jasmine_light.js'); const addSnapshotData = (results, snapshotState) => { results.testResults.forEach(_ref2 => { let fullName = _ref2.fullName, status = _ref2.status; if (status === 'pending' || status === 'failed') { // if test is skipped or failed, we don't want to mark // its snapshots as obsolete. snapshotState.markSnapshotsAsCheckedForTest(fullName); } }); const uncheckedCount = snapshotState.getUncheckedCount(); const uncheckedKeys = snapshotState.getUncheckedKeys(); if (uncheckedCount) { snapshotState.removeUncheckedKeys(); } const status = snapshotState.save(); results.snapshot.fileDeleted = status.deleted; results.snapshot.added = snapshotState.added; results.snapshot.matched = snapshotState.matched; results.snapshot.unmatched = snapshotState.unmatched; results.snapshot.updated = snapshotState.updated; results.snapshot.unchecked = !status.deleted ? uncheckedCount : 0; // Copy the array to prevent memory leaks results.snapshot.uncheckedKeys = Array.from(uncheckedKeys); return results; }; module.exports = jasmine2;