refactor(Cypress): add nodemodules

This commit is contained in:
2021-09-02 17:18:41 +02:00
parent 1aa57bbd0a
commit bc6e1bc12e
4238 changed files with 340975 additions and 8 deletions

63
node_modules/serialize-error/index.js generated vendored Normal file
View File

@@ -0,0 +1,63 @@
'use strict';
// Make a value ready for JSON.stringify() / process.send()
module.exports = function (value) {
if (typeof value === 'object') {
return destroyCircular(value, []);
}
// People sometimes throw things besides Error objects, so...
if (typeof value === 'function') {
// JSON.stringify discards functions. We do to, unless a function is thrown directly.
return '[Function: ' + (value.name || 'anonymous') + ']';
}
return value;
};
// https://www.npmjs.com/package/destroy-circular
function destroyCircular(from, seen) {
var to;
if (Array.isArray(from)) {
to = [];
} else {
to = {};
}
seen.push(from);
Object.keys(from).forEach(function (key) {
var value = from[key];
if (typeof value === 'function') {
return;
}
if (!value || typeof value !== 'object') {
to[key] = value;
return;
}
if (seen.indexOf(from[key]) === -1) {
to[key] = destroyCircular(from[key], seen.slice(0));
return;
}
to[key] = '[Circular]';
});
if (typeof from.name === 'string') {
to.name = from.name;
}
if (typeof from.message === 'string') {
to.message = from.message;
}
if (typeof from.stack === 'string') {
to.stack = from.stack;
}
return to;
}

21
node_modules/serialize-error/license generated vendored Normal file
View File

@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included 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 OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

68
node_modules/serialize-error/package.json generated vendored Normal file
View File

@@ -0,0 +1,68 @@
{
"_from": "serialize-error@^2.1.0",
"_id": "serialize-error@2.1.0",
"_inBundle": false,
"_integrity": "sha1-ULZ51WNc34Rme9yOWa9OW4HV9go=",
"_location": "/serialize-error",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "serialize-error@^2.1.0",
"name": "serialize-error",
"escapedName": "serialize-error",
"rawSpec": "^2.1.0",
"saveSpec": null,
"fetchSpec": "^2.1.0"
},
"_requiredBy": [
"/cucumber"
],
"_resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz",
"_shasum": "50b679d5635cdf84667bdc8e59af4e5b81d5f60a",
"_spec": "serialize-error@^2.1.0",
"_where": "/home/simon/Documents/lifen-autotest/node_modules/cucumber",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/serialize-error/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Serialize an error into a plain object",
"devDependencies": {
"ava": "*",
"xo": "^0.16.0"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/sindresorhus/serialize-error#readme",
"keywords": [
"error",
"err",
"serialize",
"stringify",
"object",
"obj",
"convert",
"process",
"send"
],
"license": "MIT",
"name": "serialize-error",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/serialize-error.git"
},
"scripts": {
"test": "xo && ava"
},
"version": "2.1.0"
}

31
node_modules/serialize-error/readme.md generated vendored Normal file
View File

@@ -0,0 +1,31 @@
# serialize-error [![Build Status](https://travis-ci.org/sindresorhus/serialize-error.svg?branch=master)](https://travis-ci.org/sindresorhus/serialize-error)
> Serialize an error into a plain object
Useful if you for example need to `JSON.stringify()` or `process.send()` the error.
## Install
```
$ npm install --save serialize-error
```
## Usage
```js
const serializeError = require('serialize-error');
const error = new Error('unicorn');
console.log(error);
//=> [Error: unicorn]
console.log(serializeError(error));
//=> {name: 'Error', message: 'unicorn', stack: 'Error: unicorn\n at Object.<anonymous> ...'}
```
## License
MIT © [Sindre Sorhus](https://sindresorhus.com)