Izmjenjena struktura, dodan backand

This commit is contained in:
GotPPay
2017-10-16 11:19:46 +02:00
parent 1ec88afacb
commit 048e32c4aa
37153 changed files with 2975854 additions and 1 deletions

4
web/node_modules/jest-environment-jsdom/.npmignore generated vendored Normal file
View File

@@ -0,0 +1,4 @@
**/__mocks__/**
**/__tests__/**
src
yarn.lock

59
web/node_modules/jest-environment-jsdom/build/index.js generated vendored Normal file
View File

@@ -0,0 +1,59 @@
'use strict'; /**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/var _require =
require('jest-util');const FakeTimers = _require.FakeTimers,installCommonGlobals = _require.installCommonGlobals;
const mock = require('jest-mock');
class JSDOMEnvironment {
constructor(config) {
// lazy require
this.document = require('jsdom').jsdom( /* markup */undefined, {
url: config.testURL });
const global = this.global = this.document.defaultView;
// Node's error-message stack size is limited at 10, but it's pretty useful
// to see more than that when a test fails.
this.global.Error.stackTraceLimit = 100;
installCommonGlobals(global, config.globals);
this.moduleMocker = new mock.ModuleMocker(global);
this.fakeTimers = new FakeTimers(global, this.moduleMocker, config);
}
dispose() {
if (this.fakeTimers) {
this.fakeTimers.dispose();
}
if (this.global) {
this.global.close();
}
this.global = null;
this.document = null;
this.fakeTimers = null;
}
runScript(script) {
if (this.global) {
return require('jsdom').evalVMScript(this.global, script);
}
return null;
}}
module.exports = JSDOMEnvironment;

45
web/node_modules/jest-environment-jsdom/package.json generated vendored Normal file
View File

@@ -0,0 +1,45 @@
{
"_from": "jest-environment-jsdom@^20.0.3",
"_id": "jest-environment-jsdom@20.0.3",
"_inBundle": false,
"_integrity": "sha1-BIqKwS7iJfcZBBdxODS7mZeH3pk=",
"_location": "/jest-environment-jsdom",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "jest-environment-jsdom@^20.0.3",
"name": "jest-environment-jsdom",
"escapedName": "jest-environment-jsdom",
"rawSpec": "^20.0.3",
"saveSpec": null,
"fetchSpec": "^20.0.3"
},
"_requiredBy": [
"/jest-config",
"/jest/jest-cli"
],
"_resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz",
"_shasum": "048a8ac12ee225f7190417713834bb999787de99",
"_spec": "jest-environment-jsdom@^20.0.3",
"_where": "/home/bilal/Saburly/slucajna-televizija/node_modules/jest/node_modules/jest-cli",
"bugs": {
"url": "https://github.com/facebook/jest/issues"
},
"bundleDependencies": false,
"dependencies": {
"jest-mock": "^20.0.3",
"jest-util": "^20.0.3",
"jsdom": "^9.12.0"
},
"deprecated": false,
"homepage": "https://github.com/facebook/jest#readme",
"license": "BSD-3-Clause",
"main": "build/index.js",
"name": "jest-environment-jsdom",
"repository": {
"type": "git",
"url": "git+https://github.com/facebook/jest.git"
},
"version": "20.0.3"
}