From 61b65d19d94c06044925165d1415aebec0887f54 Mon Sep 17 00:00:00 2001 From: Frederik Claus Date: Fri, 26 May 2023 08:56:26 +0200 Subject: [PATCH 01/12] fix: Coverage on application reload --- support.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/support.js b/support.js index 25249f59..5720c780 100644 --- a/support.js +++ b/support.js @@ -72,13 +72,17 @@ const registerHooks = () => { return } + const existingCoverage = Cypress._.find(windowCoverageObjects, { + coverage: applicationSourceCoverage + }) if ( - Cypress._.find(windowCoverageObjects, { - coverage: applicationSourceCoverage - }) + existingCoverage ) { // this application code coverage object is already known // which can happen when combining `window:load` and `before` callbacks + // it can also happen when the user leaves and returns to the application under test + // in which case we need to use new applicationSourceCoverage, because the old will not be updated anymore. + existingCoverage.coverage = applicationSourceCoverage; return } From 170a13eb02f202c5ebcba40306b49349073d22b0 Mon Sep 17 00:00:00 2001 From: Frederik Claus Date: Fri, 26 May 2023 10:26:04 +0200 Subject: [PATCH 02/12] fix: Add test for coverage with redirect --- .../returning-to-application/.babelrc | 3 + .../returning-to-application/README.md | 3 + .../returning-to-application/app.js | 34 + .../cypress.config.js | 17 + .../cypress/e2e/spec.cy.js | 13 + .../cypress/plugins/index.js | 4 + .../cypress/support/commands.js | 2 + .../cypress/support/e2e.js | 1 + .../returning-to-application/index.html | 4 + .../package-lock.json | 656 ++++++++++++++++++ .../returning-to-application/package.json | 16 + 11 files changed, 753 insertions(+) create mode 100644 test-apps/new-cypress-config/returning-to-application/.babelrc create mode 100644 test-apps/new-cypress-config/returning-to-application/README.md create mode 100644 test-apps/new-cypress-config/returning-to-application/app.js create mode 100644 test-apps/new-cypress-config/returning-to-application/cypress.config.js create mode 100644 test-apps/new-cypress-config/returning-to-application/cypress/e2e/spec.cy.js create mode 100644 test-apps/new-cypress-config/returning-to-application/cypress/plugins/index.js create mode 100644 test-apps/new-cypress-config/returning-to-application/cypress/support/commands.js create mode 100644 test-apps/new-cypress-config/returning-to-application/cypress/support/e2e.js create mode 100644 test-apps/new-cypress-config/returning-to-application/index.html create mode 100644 test-apps/new-cypress-config/returning-to-application/package-lock.json create mode 100644 test-apps/new-cypress-config/returning-to-application/package.json diff --git a/test-apps/new-cypress-config/returning-to-application/.babelrc b/test-apps/new-cypress-config/returning-to-application/.babelrc new file mode 100644 index 00000000..7a016cf8 --- /dev/null +++ b/test-apps/new-cypress-config/returning-to-application/.babelrc @@ -0,0 +1,3 @@ +{ + "plugins": ["istanbul"] +} diff --git a/test-apps/new-cypress-config/returning-to-application/README.md b/test-apps/new-cypress-config/returning-to-application/README.md new file mode 100644 index 00000000..d22ba8be --- /dev/null +++ b/test-apps/new-cypress-config/returning-to-application/README.md @@ -0,0 +1,3 @@ +# example: frontend + +Tests a frontend app that redirects, through un-instrumented code, back to itself. \ No newline at end of file diff --git a/test-apps/new-cypress-config/returning-to-application/app.js b/test-apps/new-cypress-config/returning-to-application/app.js new file mode 100644 index 00000000..dbae07aa --- /dev/null +++ b/test-apps/new-cypress-config/returning-to-application/app.js @@ -0,0 +1,34 @@ +import { map } from 'lodash' + +// The redirect code needs to be un-instrumented, otherwise the statement map will be different +// depending on which code path the redirect took. +// Cypress will then correctly treat them as different coverage objects and merge the code coverage. +// If the redirect code is un-instrumented, Cypress can't tell them apart and will keep referencing to the (stale) first coverage object. +// Timeouts are necessary to allow cypress to pick up the "initial" coverage object +// and compare it to the existing coverage objects. +eval(` + new Promise((resolve) => { + if (window.location.port === "1234" && !localStorage.getItem("visited")) { + localStorage.setItem("visited", true); + console.log("Not visited. Redirecting"); + setTimeout(() => { + window.location.href = "http://localhost:1235"; + }, 500); + } else if (window.location.port === "1235") { + console.log("Redirecting back."); + setTimeout(() => { + window.location.href = "http://localhost:1234"; + }, 500); + } else { + console.log("Visited"); + setTimeout(() => { + resolve(); + }, 500) + } + }) +`).then(() => { + document.body + .appendChild(document.createTextNode('Returned to app')) +}); + + diff --git a/test-apps/new-cypress-config/returning-to-application/cypress.config.js b/test-apps/new-cypress-config/returning-to-application/cypress.config.js new file mode 100644 index 00000000..57742253 --- /dev/null +++ b/test-apps/new-cypress-config/returning-to-application/cypress.config.js @@ -0,0 +1,17 @@ +const { defineConfig } = require('cypress') + +module.exports = defineConfig({ + fixturesFolder: false, + e2e: { + setupNodeEvents(on, config) { + return require('./cypress/plugins/index.js')(on, config) + }, + baseUrl: 'http://localhost:1234', + env: { + codeCoverage: { + exclude: ['cypress/**/*.*'] + } + }, + chromeWebSecurity: false + } +}) diff --git a/test-apps/new-cypress-config/returning-to-application/cypress/e2e/spec.cy.js b/test-apps/new-cypress-config/returning-to-application/cypress/e2e/spec.cy.js new file mode 100644 index 00000000..b037cf42 --- /dev/null +++ b/test-apps/new-cypress-config/returning-to-application/cypress/e2e/spec.cy.js @@ -0,0 +1,13 @@ +// enables intelligent code completion for Cypress commands +// https://on.cypress.io/intelligent-code-completion +/// + +context('Page test', () => { + + it('logs names', function() { + cy.clearLocalStorage(); + cy.visit("http://localhost:1234") + cy.contains("Returned to app") + }) + +}) diff --git a/test-apps/new-cypress-config/returning-to-application/cypress/plugins/index.js b/test-apps/new-cypress-config/returning-to-application/cypress/plugins/index.js new file mode 100644 index 00000000..101311b6 --- /dev/null +++ b/test-apps/new-cypress-config/returning-to-application/cypress/plugins/index.js @@ -0,0 +1,4 @@ +module.exports = (on, config) => { + require('@cypress/code-coverage/task')(on, config) + return config +} diff --git a/test-apps/new-cypress-config/returning-to-application/cypress/support/commands.js b/test-apps/new-cypress-config/returning-to-application/cypress/support/commands.js new file mode 100644 index 00000000..0f942688 --- /dev/null +++ b/test-apps/new-cypress-config/returning-to-application/cypress/support/commands.js @@ -0,0 +1,2 @@ +import '@cypress/code-coverage/support' +console.log('this is commands file') diff --git a/test-apps/new-cypress-config/returning-to-application/cypress/support/e2e.js b/test-apps/new-cypress-config/returning-to-application/cypress/support/e2e.js new file mode 100644 index 00000000..b5c578c9 --- /dev/null +++ b/test-apps/new-cypress-config/returning-to-application/cypress/support/e2e.js @@ -0,0 +1 @@ +require('./commands') diff --git a/test-apps/new-cypress-config/returning-to-application/index.html b/test-apps/new-cypress-config/returning-to-application/index.html new file mode 100644 index 00000000..d6d812b7 --- /dev/null +++ b/test-apps/new-cypress-config/returning-to-application/index.html @@ -0,0 +1,4 @@ + +

Test page

+ + \ No newline at end of file diff --git a/test-apps/new-cypress-config/returning-to-application/package-lock.json b/test-apps/new-cypress-config/returning-to-application/package-lock.json new file mode 100644 index 00000000..9c9fea74 --- /dev/null +++ b/test-apps/new-cypress-config/returning-to-application/package-lock.json @@ -0,0 +1,656 @@ +{ + "name": "example-frontend", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "example-frontend", + "devDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", + "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.21.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.9.tgz", + "integrity": "sha512-FUGed8kfhyWvbYug/Un/VPJD41rDIgoVVcR+FuzhzOYyRz5uED+Gd3SLZml0Uw2l2aHFb7ZgdW5mGA3G2cCCnQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", + "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.5", + "@babel/helper-compilation-targets": "^7.21.5", + "@babel/helper-module-transforms": "^7.21.5", + "@babel/helpers": "^7.21.5", + "@babel/parser": "^7.21.8", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.21.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.9.tgz", + "integrity": "sha512-F3fZga2uv09wFdEjEQIJxXALXfz0+JaOb7SabvVMmjHxeVTuGW8wgE8Vp1Hd7O+zMTYtcfEISGRzPkeiaPPsvg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.21.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz", + "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.21.5", + "@babel/helper-validator-option": "^7.21.0", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz", + "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", + "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", + "dev": true, + "dependencies": { + "@babel/template": "^7.20.7", + "@babel/types": "^7.21.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", + "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.21.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz", + "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.21.5", + "@babel/helper-module-imports": "^7.21.4", + "@babel/helper-simple-access": "^7.21.5", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz", + "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", + "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", + "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz", + "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==", + "dev": true, + "dependencies": { + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.21.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.9.tgz", + "integrity": "sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.21.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.21.9.tgz", + "integrity": "sha512-MK0X5k8NKOuWRamiEfc3KEJiHMTkGZNUjzMipqCGDDc6ijRl/B7RGSKVGncu4Ro/HdyzzY6cmoXuKI2Gffk7vQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.21.4", + "@babel/parser": "^7.21.9", + "@babel/types": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", + "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.5", + "@babel/helper-environment-visitor": "^7.21.5", + "@babel/helper-function-name": "^7.21.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.21.5", + "@babel/types": "^7.21.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", + "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.21.5", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001489", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001489.tgz", + "integrity": "sha512-x1mgZEXK8jHIfAxm+xgdpHpk50IN3z3q3zP261/WS+uvePxW8izXuCu6AHz0lkuYTlATDehiZ/tNyYBdSQsOUQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.408", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.408.tgz", + "integrity": "sha512-vjeaj0u/UYnzA/CIdGXzzcxRLCqRwREYc9YfaWInjIEr7/XPttZ6ShpyqapchEy0S2r6LpLjDBTnNj7ZxnxJKg==", + "dev": true + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } +} diff --git a/test-apps/new-cypress-config/returning-to-application/package.json b/test-apps/new-cypress-config/returning-to-application/package.json new file mode 100644 index 00000000..562a7ed6 --- /dev/null +++ b/test-apps/new-cypress-config/returning-to-application/package.json @@ -0,0 +1,16 @@ +{ + "name": "example-frontend", + "description": "Tests a frontend app", + "devDependencies": { + "@babel/core": "^7.12.0" + }, + "scripts": { + "cy:run": "../node_modules/.bin/cypress run", + "start:app": "../node_modules/.bin/parcel serve -p 1234 index.html ", + "start:other-app": "../node_modules/.bin/parcel serve -p 1235 index.html", + "pretest": "rimraf .nyc_output .cache coverage dist", + "test": "../node_modules/.bin/start-test 1234 cy:run", + "coverage:verify": "npx nyc report --check-coverage true --lines 100", + "coverage:check-files": "../node_modules/.bin/check-coverage app.js && ../node_modules/.bin/check-coverage about.js && ../node_modules/.bin/check-coverage unit.js && ../node_modules/.bin/only-covered app.js about.js unit.js" + } +} From f72fa045e3d094a58da8357e2211b29936636eff Mon Sep 17 00:00:00 2001 From: Frederik Claus Date: Fri, 26 May 2023 12:21:34 +0200 Subject: [PATCH 03/12] fix: Add test config for return-to-application --- .circleci/config.yml | 1 + .../new-cypress-config/returning-to-application/package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 899d3db7..6ac9d34d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -183,6 +183,7 @@ workflows: - new-cypress-config/ts-example - new-cypress-config/unit-tests-js - new-cypress-config/use-webpack + - new-cypress-config/returning-to-application - windows_test - publish: filters: diff --git a/test-apps/new-cypress-config/returning-to-application/package.json b/test-apps/new-cypress-config/returning-to-application/package.json index 562a7ed6..4d2a2cd6 100644 --- a/test-apps/new-cypress-config/returning-to-application/package.json +++ b/test-apps/new-cypress-config/returning-to-application/package.json @@ -9,7 +9,7 @@ "start:app": "../node_modules/.bin/parcel serve -p 1234 index.html ", "start:other-app": "../node_modules/.bin/parcel serve -p 1235 index.html", "pretest": "rimraf .nyc_output .cache coverage dist", - "test": "../node_modules/.bin/start-test 1234 cy:run", + "test": "../node_modules/.bin/start-test start:app http://localhost:1234 start:other-app http://localhost:1235 cy:run", "coverage:verify": "npx nyc report --check-coverage true --lines 100", "coverage:check-files": "../node_modules/.bin/check-coverage app.js && ../node_modules/.bin/check-coverage about.js && ../node_modules/.bin/check-coverage unit.js && ../node_modules/.bin/only-covered app.js about.js unit.js" } From 688444d03e4468f61d0364fcbbc3df510b11793e Mon Sep 17 00:00:00 2001 From: Frederik Claus Date: Fri, 26 May 2023 13:00:52 +0200 Subject: [PATCH 04/12] fix: Failing return-to-application test --- .../new-cypress-config/returning-to-application/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-apps/new-cypress-config/returning-to-application/package.json b/test-apps/new-cypress-config/returning-to-application/package.json index 4d2a2cd6..cb316d97 100644 --- a/test-apps/new-cypress-config/returning-to-application/package.json +++ b/test-apps/new-cypress-config/returning-to-application/package.json @@ -11,6 +11,6 @@ "pretest": "rimraf .nyc_output .cache coverage dist", "test": "../node_modules/.bin/start-test start:app http://localhost:1234 start:other-app http://localhost:1235 cy:run", "coverage:verify": "npx nyc report --check-coverage true --lines 100", - "coverage:check-files": "../node_modules/.bin/check-coverage app.js && ../node_modules/.bin/check-coverage about.js && ../node_modules/.bin/check-coverage unit.js && ../node_modules/.bin/only-covered app.js about.js unit.js" + "coverage:check-files": "../node_modules/.bin/check-coverage app.js && ../node_modules/.bin/only-covered app.js " } } From bee4f56d47c25a5b29f479091e0a455ebac209b3 Mon Sep 17 00:00:00 2001 From: Frederik Claus Date: Fri, 26 May 2023 13:23:09 +0200 Subject: [PATCH 05/12] fix: Prettier and code coverage --- .nycrc.json | 3 ++- support.js | 6 ++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.nycrc.json b/.nycrc.json index 6f8691fd..77cfabeb 100644 --- a/.nycrc.json +++ b/.nycrc.json @@ -1,6 +1,7 @@ { "exclude": [ "support-utils.js", - "task-utils.js" + "task-utils.js", + "support.js" ] } diff --git a/support.js b/support.js index 5720c780..c13692e7 100644 --- a/support.js +++ b/support.js @@ -75,14 +75,12 @@ const registerHooks = () => { const existingCoverage = Cypress._.find(windowCoverageObjects, { coverage: applicationSourceCoverage }) - if ( - existingCoverage - ) { + if (existingCoverage) { // this application code coverage object is already known // which can happen when combining `window:load` and `before` callbacks // it can also happen when the user leaves and returns to the application under test // in which case we need to use new applicationSourceCoverage, because the old will not be updated anymore. - existingCoverage.coverage = applicationSourceCoverage; + existingCoverage.coverage = applicationSourceCoverage return } From afcf61710e3580e5679f3d0afb5c07fcd60cbf82 Mon Sep 17 00:00:00 2001 From: fvclaus Date: Thu, 15 Jun 2023 07:38:40 +0200 Subject: [PATCH 06/12] Update test-apps/new-cypress-config/returning-to-application/app.js Co-authored-by: Matt Schile --- test-apps/new-cypress-config/returning-to-application/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-apps/new-cypress-config/returning-to-application/app.js b/test-apps/new-cypress-config/returning-to-application/app.js index dbae07aa..0be72f1b 100644 --- a/test-apps/new-cypress-config/returning-to-application/app.js +++ b/test-apps/new-cypress-config/returning-to-application/app.js @@ -3,7 +3,7 @@ import { map } from 'lodash' // The redirect code needs to be un-instrumented, otherwise the statement map will be different // depending on which code path the redirect took. // Cypress will then correctly treat them as different coverage objects and merge the code coverage. -// If the redirect code is un-instrumented, Cypress can't tell them apart and will keep referencing to the (stale) first coverage object. +// If the redirect code is un-instrumented, Cypress can't tell them apart and will keep referencing the (stale) first coverage object. // Timeouts are necessary to allow cypress to pick up the "initial" coverage object // and compare it to the existing coverage objects. eval(` From cecc79b0605d7ba6e9449b7ad313eb67bf16c8aa Mon Sep 17 00:00:00 2001 From: Matthew Schile Date: Mon, 23 Oct 2023 16:28:39 -0600 Subject: [PATCH 07/12] renaming example to redirect --- .circleci/config.yml | 5 +-- .nycrc.json | 3 +- support.js | 4 +-- .../.babelrc | 0 .../new-cypress-config/redirect/.nycrc.json | 5 +++ .../README.md | 4 +-- test-apps/new-cypress-config/redirect/app.js | 27 +++++++++++++++ .../cypress.config.js | 0 .../cypress/e2e/spec.cy.js | 2 +- .../cypress/plugins/index.js | 0 .../cypress/support/commands.js | 0 .../cypress/support/e2e.js | 0 .../index.html | 0 .../package-lock.json | 4 +-- .../package.json | 8 ++--- .../returning-to-application/app.js | 34 ------------------- 16 files changed, 47 insertions(+), 49 deletions(-) rename test-apps/new-cypress-config/{returning-to-application => redirect}/.babelrc (100%) create mode 100644 test-apps/new-cypress-config/redirect/.nycrc.json rename test-apps/new-cypress-config/{returning-to-application => redirect}/README.md (62%) create mode 100644 test-apps/new-cypress-config/redirect/app.js rename test-apps/new-cypress-config/{returning-to-application => redirect}/cypress.config.js (100%) rename test-apps/new-cypress-config/{returning-to-application => redirect}/cypress/e2e/spec.cy.js (91%) rename test-apps/new-cypress-config/{returning-to-application => redirect}/cypress/plugins/index.js (100%) rename test-apps/new-cypress-config/{returning-to-application => redirect}/cypress/support/commands.js (100%) rename test-apps/new-cypress-config/{returning-to-application => redirect}/cypress/support/e2e.js (100%) rename test-apps/new-cypress-config/{returning-to-application => redirect}/index.html (100%) rename test-apps/new-cypress-config/{returning-to-application => redirect}/package-lock.json (99%) rename test-apps/new-cypress-config/{returning-to-application => redirect}/package.json (75%) delete mode 100644 test-apps/new-cypress-config/returning-to-application/app.js diff --git a/.circleci/config.yml b/.circleci/config.yml index 99640ef1..0aea9163 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,7 +11,7 @@ jobs: docker: - image: cimg/node:20.8.0 environment: - # we don't need Cypress to check code styl + # we don't need Cypress to check code style CYPRESS_INSTALL_BINARY: '0' steps: - attach_workspace: @@ -158,7 +158,7 @@ workflows: - ts-example - unit-tests-js - use-webpack - - returning-to-application + - redirect - windows_test - publish: filters: @@ -186,3 +186,4 @@ workflows: - test-unit-tests-js - test-use-webpack - windows_test + - redirect diff --git a/.nycrc.json b/.nycrc.json index 77cfabeb..6f8691fd 100644 --- a/.nycrc.json +++ b/.nycrc.json @@ -1,7 +1,6 @@ { "exclude": [ "support-utils.js", - "task-utils.js", - "support.js" + "task-utils.js" ] } diff --git a/support.js b/support.js index c13692e7..bf90a390 100644 --- a/support.js +++ b/support.js @@ -77,8 +77,8 @@ const registerHooks = () => { }) if (existingCoverage) { // this application code coverage object is already known - // which can happen when combining `window:load` and `before` callbacks - // it can also happen when the user leaves and returns to the application under test + // which can happen when combining `window:load` and `before` callbacks, + // it can also happen when the user navigates away and then returns to the page // in which case we need to use new applicationSourceCoverage, because the old will not be updated anymore. existingCoverage.coverage = applicationSourceCoverage return diff --git a/test-apps/new-cypress-config/returning-to-application/.babelrc b/test-apps/new-cypress-config/redirect/.babelrc similarity index 100% rename from test-apps/new-cypress-config/returning-to-application/.babelrc rename to test-apps/new-cypress-config/redirect/.babelrc diff --git a/test-apps/new-cypress-config/redirect/.nycrc.json b/test-apps/new-cypress-config/redirect/.nycrc.json new file mode 100644 index 00000000..93a10fdb --- /dev/null +++ b/test-apps/new-cypress-config/redirect/.nycrc.json @@ -0,0 +1,5 @@ +{ + "exclude": [ + "app.js" + ] +} diff --git a/test-apps/new-cypress-config/returning-to-application/README.md b/test-apps/new-cypress-config/redirect/README.md similarity index 62% rename from test-apps/new-cypress-config/returning-to-application/README.md rename to test-apps/new-cypress-config/redirect/README.md index d22ba8be..9b6265b7 100644 --- a/test-apps/new-cypress-config/returning-to-application/README.md +++ b/test-apps/new-cypress-config/redirect/README.md @@ -1,3 +1,3 @@ -# example: frontend +# example: redirect -Tests a frontend app that redirects, through un-instrumented code, back to itself. \ No newline at end of file +Tests a frontend app that redirects, through un-instrumented code, back to itself. diff --git a/test-apps/new-cypress-config/redirect/app.js b/test-apps/new-cypress-config/redirect/app.js new file mode 100644 index 00000000..22e52251 --- /dev/null +++ b/test-apps/new-cypress-config/redirect/app.js @@ -0,0 +1,27 @@ +// The redirect code needs to be un-instrumented, otherwise the statement map will be different depending on which code path the redirect took. +// If the redirect code is instrumented, Cypress would then treat them as different coverage objects and merge the code coverage (not testing what we want). +// If the redirect code is un-instrumented, Cypress can't tell them apart and will update the existing coverage object to point to the correct one. +// Timeouts are necessary to allow cypress to pick up the "initial" coverage object and compare it to the existing coverage objects. + +new Promise((resolve) => { + if (window.location.port === '1234' && !localStorage.getItem('visited')) { + localStorage.setItem('visited', true) + console.log('Not visited. Redirecting') + setTimeout(() => { + window.location.href = 'http://localhost:1235' + }, 500) + } else if (window.location.port === '1235') { + console.log('Redirecting back.') + setTimeout(() => { + window.location.href = 'http://localhost:1234' + }, 500) + } else { + console.log('Visited'); + setTimeout(() => { + resolve() + }, 500) + } +}).then(() => { + document.body + .appendChild(document.createTextNode('Returned to app')) +}) diff --git a/test-apps/new-cypress-config/returning-to-application/cypress.config.js b/test-apps/new-cypress-config/redirect/cypress.config.js similarity index 100% rename from test-apps/new-cypress-config/returning-to-application/cypress.config.js rename to test-apps/new-cypress-config/redirect/cypress.config.js diff --git a/test-apps/new-cypress-config/returning-to-application/cypress/e2e/spec.cy.js b/test-apps/new-cypress-config/redirect/cypress/e2e/spec.cy.js similarity index 91% rename from test-apps/new-cypress-config/returning-to-application/cypress/e2e/spec.cy.js rename to test-apps/new-cypress-config/redirect/cypress/e2e/spec.cy.js index b037cf42..95612422 100644 --- a/test-apps/new-cypress-config/returning-to-application/cypress/e2e/spec.cy.js +++ b/test-apps/new-cypress-config/redirect/cypress/e2e/spec.cy.js @@ -5,7 +5,7 @@ context('Page test', () => { it('logs names', function() { - cy.clearLocalStorage(); + cy.clearLocalStorage() cy.visit("http://localhost:1234") cy.contains("Returned to app") }) diff --git a/test-apps/new-cypress-config/returning-to-application/cypress/plugins/index.js b/test-apps/new-cypress-config/redirect/cypress/plugins/index.js similarity index 100% rename from test-apps/new-cypress-config/returning-to-application/cypress/plugins/index.js rename to test-apps/new-cypress-config/redirect/cypress/plugins/index.js diff --git a/test-apps/new-cypress-config/returning-to-application/cypress/support/commands.js b/test-apps/new-cypress-config/redirect/cypress/support/commands.js similarity index 100% rename from test-apps/new-cypress-config/returning-to-application/cypress/support/commands.js rename to test-apps/new-cypress-config/redirect/cypress/support/commands.js diff --git a/test-apps/new-cypress-config/returning-to-application/cypress/support/e2e.js b/test-apps/new-cypress-config/redirect/cypress/support/e2e.js similarity index 100% rename from test-apps/new-cypress-config/returning-to-application/cypress/support/e2e.js rename to test-apps/new-cypress-config/redirect/cypress/support/e2e.js diff --git a/test-apps/new-cypress-config/returning-to-application/index.html b/test-apps/new-cypress-config/redirect/index.html similarity index 100% rename from test-apps/new-cypress-config/returning-to-application/index.html rename to test-apps/new-cypress-config/redirect/index.html diff --git a/test-apps/new-cypress-config/returning-to-application/package-lock.json b/test-apps/new-cypress-config/redirect/package-lock.json similarity index 99% rename from test-apps/new-cypress-config/returning-to-application/package-lock.json rename to test-apps/new-cypress-config/redirect/package-lock.json index 9c9fea74..2d51e3d8 100644 --- a/test-apps/new-cypress-config/returning-to-application/package-lock.json +++ b/test-apps/new-cypress-config/redirect/package-lock.json @@ -1,10 +1,10 @@ { - "name": "example-frontend", + "name": "example-redirect", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "example-frontend", + "name": "example-redirect", "devDependencies": { "@babel/core": "^7.12.0" } diff --git a/test-apps/new-cypress-config/returning-to-application/package.json b/test-apps/new-cypress-config/redirect/package.json similarity index 75% rename from test-apps/new-cypress-config/returning-to-application/package.json rename to test-apps/new-cypress-config/redirect/package.json index cb316d97..c1e17402 100644 --- a/test-apps/new-cypress-config/returning-to-application/package.json +++ b/test-apps/new-cypress-config/redirect/package.json @@ -1,16 +1,16 @@ { - "name": "example-frontend", - "description": "Tests a frontend app", + "name": "example-redirect", + "description": "Tests a frontend app that redirects, through un-instrumented code, back to itself.", "devDependencies": { "@babel/core": "^7.12.0" }, "scripts": { "cy:run": "../node_modules/.bin/cypress run", - "start:app": "../node_modules/.bin/parcel serve -p 1234 index.html ", + "start:app": "../node_modules/.bin/parcel serve -p 1234 index.html", "start:other-app": "../node_modules/.bin/parcel serve -p 1235 index.html", "pretest": "rimraf .nyc_output .cache coverage dist", "test": "../node_modules/.bin/start-test start:app http://localhost:1234 start:other-app http://localhost:1235 cy:run", "coverage:verify": "npx nyc report --check-coverage true --lines 100", - "coverage:check-files": "../node_modules/.bin/check-coverage app.js && ../node_modules/.bin/only-covered app.js " + "coverage:check-files": "../node_modules/.bin/check-coverage app.js && ../node_modules/.bin/only-covered app.js" } } diff --git a/test-apps/new-cypress-config/returning-to-application/app.js b/test-apps/new-cypress-config/returning-to-application/app.js deleted file mode 100644 index 0be72f1b..00000000 --- a/test-apps/new-cypress-config/returning-to-application/app.js +++ /dev/null @@ -1,34 +0,0 @@ -import { map } from 'lodash' - -// The redirect code needs to be un-instrumented, otherwise the statement map will be different -// depending on which code path the redirect took. -// Cypress will then correctly treat them as different coverage objects and merge the code coverage. -// If the redirect code is un-instrumented, Cypress can't tell them apart and will keep referencing the (stale) first coverage object. -// Timeouts are necessary to allow cypress to pick up the "initial" coverage object -// and compare it to the existing coverage objects. -eval(` - new Promise((resolve) => { - if (window.location.port === "1234" && !localStorage.getItem("visited")) { - localStorage.setItem("visited", true); - console.log("Not visited. Redirecting"); - setTimeout(() => { - window.location.href = "http://localhost:1235"; - }, 500); - } else if (window.location.port === "1235") { - console.log("Redirecting back."); - setTimeout(() => { - window.location.href = "http://localhost:1234"; - }, 500); - } else { - console.log("Visited"); - setTimeout(() => { - resolve(); - }, 500) - } - }) -`).then(() => { - document.body - .appendChild(document.createTextNode('Returned to app')) -}); - - From 9afb4e4bb956a7914708d25f97b305460c2cc811 Mon Sep 17 00:00:00 2001 From: Matthew Schile Date: Mon, 23 Oct 2023 17:21:44 -0600 Subject: [PATCH 08/12] renaming to redirect --- .../redirect/cypress/plugins/index.js | 4 ---- .../redirect/cypress/support/e2e.js | 1 - .../new-cypress-config/redirect/package.json | 16 ---------------- .../{new-cypress-config => }/redirect/.babelrc | 0 .../redirect/.nycrc.json | 0 .../{new-cypress-config => }/redirect/README.md | 0 .../{new-cypress-config => }/redirect/app.js | 13 +++++++------ .../redirect/cypress.config.js | 3 ++- .../redirect/cypress/e2e/spec.cy.js | 4 +--- .../cypress/support/e2e.js} | 1 - .../{new-cypress-config => }/redirect/index.html | 0 .../redirect/package-lock.json | 0 test-apps/redirect/package.json | 16 ++++++++++++++++ test-apps/redirect/utils.js | 4 ++++ 14 files changed, 30 insertions(+), 32 deletions(-) delete mode 100644 test-apps/new-cypress-config/redirect/cypress/plugins/index.js delete mode 100644 test-apps/new-cypress-config/redirect/cypress/support/e2e.js delete mode 100644 test-apps/new-cypress-config/redirect/package.json rename test-apps/{new-cypress-config => }/redirect/.babelrc (100%) rename test-apps/{new-cypress-config => }/redirect/.nycrc.json (100%) rename test-apps/{new-cypress-config => }/redirect/README.md (100%) rename test-apps/{new-cypress-config => }/redirect/app.js (56%) rename test-apps/{new-cypress-config => }/redirect/cypress.config.js (80%) rename test-apps/{new-cypress-config => }/redirect/cypress/e2e/spec.cy.js (85%) rename test-apps/{new-cypress-config/redirect/cypress/support/commands.js => redirect/cypress/support/e2e.js} (51%) rename test-apps/{new-cypress-config => }/redirect/index.html (100%) rename test-apps/{new-cypress-config => }/redirect/package-lock.json (100%) create mode 100644 test-apps/redirect/package.json create mode 100644 test-apps/redirect/utils.js diff --git a/test-apps/new-cypress-config/redirect/cypress/plugins/index.js b/test-apps/new-cypress-config/redirect/cypress/plugins/index.js deleted file mode 100644 index 101311b6..00000000 --- a/test-apps/new-cypress-config/redirect/cypress/plugins/index.js +++ /dev/null @@ -1,4 +0,0 @@ -module.exports = (on, config) => { - require('@cypress/code-coverage/task')(on, config) - return config -} diff --git a/test-apps/new-cypress-config/redirect/cypress/support/e2e.js b/test-apps/new-cypress-config/redirect/cypress/support/e2e.js deleted file mode 100644 index b5c578c9..00000000 --- a/test-apps/new-cypress-config/redirect/cypress/support/e2e.js +++ /dev/null @@ -1 +0,0 @@ -require('./commands') diff --git a/test-apps/new-cypress-config/redirect/package.json b/test-apps/new-cypress-config/redirect/package.json deleted file mode 100644 index c1e17402..00000000 --- a/test-apps/new-cypress-config/redirect/package.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "example-redirect", - "description": "Tests a frontend app that redirects, through un-instrumented code, back to itself.", - "devDependencies": { - "@babel/core": "^7.12.0" - }, - "scripts": { - "cy:run": "../node_modules/.bin/cypress run", - "start:app": "../node_modules/.bin/parcel serve -p 1234 index.html", - "start:other-app": "../node_modules/.bin/parcel serve -p 1235 index.html", - "pretest": "rimraf .nyc_output .cache coverage dist", - "test": "../node_modules/.bin/start-test start:app http://localhost:1234 start:other-app http://localhost:1235 cy:run", - "coverage:verify": "npx nyc report --check-coverage true --lines 100", - "coverage:check-files": "../node_modules/.bin/check-coverage app.js && ../node_modules/.bin/only-covered app.js" - } -} diff --git a/test-apps/new-cypress-config/redirect/.babelrc b/test-apps/redirect/.babelrc similarity index 100% rename from test-apps/new-cypress-config/redirect/.babelrc rename to test-apps/redirect/.babelrc diff --git a/test-apps/new-cypress-config/redirect/.nycrc.json b/test-apps/redirect/.nycrc.json similarity index 100% rename from test-apps/new-cypress-config/redirect/.nycrc.json rename to test-apps/redirect/.nycrc.json diff --git a/test-apps/new-cypress-config/redirect/README.md b/test-apps/redirect/README.md similarity index 100% rename from test-apps/new-cypress-config/redirect/README.md rename to test-apps/redirect/README.md diff --git a/test-apps/new-cypress-config/redirect/app.js b/test-apps/redirect/app.js similarity index 56% rename from test-apps/new-cypress-config/redirect/app.js rename to test-apps/redirect/app.js index 22e52251..f80f3106 100644 --- a/test-apps/new-cypress-config/redirect/app.js +++ b/test-apps/redirect/app.js @@ -1,8 +1,10 @@ -// The redirect code needs to be un-instrumented, otherwise the statement map will be different depending on which code path the redirect took. -// If the redirect code is instrumented, Cypress would then treat them as different coverage objects and merge the code coverage (not testing what we want). -// If the redirect code is un-instrumented, Cypress can't tell them apart and will update the existing coverage object to point to the correct one. -// Timeouts are necessary to allow cypress to pick up the "initial" coverage object and compare it to the existing coverage objects. +// This redirect code needs to be un-instrumented (excluded in .nycrc.json) +// - If the redirect code is instrumented, Cypress would then treat them as different coverage objects and merge the code coverage (not testing what we want). +// - If the redirect code is un-instrumented, Cypress can't tell them apart and will update the existing coverage object to point to the correct one (testing what we want). + +import { returnToApp } from './utils' +// Timeouts are necessary to allow cypress to pick up the "initial" coverage object and compare it to the existing coverage objects. new Promise((resolve) => { if (window.location.port === '1234' && !localStorage.getItem('visited')) { localStorage.setItem('visited', true) @@ -22,6 +24,5 @@ new Promise((resolve) => { }, 500) } }).then(() => { - document.body - .appendChild(document.createTextNode('Returned to app')) + returnToApp() }) diff --git a/test-apps/new-cypress-config/redirect/cypress.config.js b/test-apps/redirect/cypress.config.js similarity index 80% rename from test-apps/new-cypress-config/redirect/cypress.config.js rename to test-apps/redirect/cypress.config.js index 57742253..d5f38630 100644 --- a/test-apps/new-cypress-config/redirect/cypress.config.js +++ b/test-apps/redirect/cypress.config.js @@ -4,7 +4,8 @@ module.exports = defineConfig({ fixturesFolder: false, e2e: { setupNodeEvents(on, config) { - return require('./cypress/plugins/index.js')(on, config) + require('@cypress/code-coverage/task')(on, config) + return config }, baseUrl: 'http://localhost:1234', env: { diff --git a/test-apps/new-cypress-config/redirect/cypress/e2e/spec.cy.js b/test-apps/redirect/cypress/e2e/spec.cy.js similarity index 85% rename from test-apps/new-cypress-config/redirect/cypress/e2e/spec.cy.js rename to test-apps/redirect/cypress/e2e/spec.cy.js index 95612422..5c36a2fe 100644 --- a/test-apps/new-cypress-config/redirect/cypress/e2e/spec.cy.js +++ b/test-apps/redirect/cypress/e2e/spec.cy.js @@ -3,11 +3,9 @@ /// context('Page test', () => { - - it('logs names', function() { + it('redirects back to the app', function() { cy.clearLocalStorage() cy.visit("http://localhost:1234") cy.contains("Returned to app") }) - }) diff --git a/test-apps/new-cypress-config/redirect/cypress/support/commands.js b/test-apps/redirect/cypress/support/e2e.js similarity index 51% rename from test-apps/new-cypress-config/redirect/cypress/support/commands.js rename to test-apps/redirect/cypress/support/e2e.js index 0f942688..cc6040de 100644 --- a/test-apps/new-cypress-config/redirect/cypress/support/commands.js +++ b/test-apps/redirect/cypress/support/e2e.js @@ -1,2 +1 @@ import '@cypress/code-coverage/support' -console.log('this is commands file') diff --git a/test-apps/new-cypress-config/redirect/index.html b/test-apps/redirect/index.html similarity index 100% rename from test-apps/new-cypress-config/redirect/index.html rename to test-apps/redirect/index.html diff --git a/test-apps/new-cypress-config/redirect/package-lock.json b/test-apps/redirect/package-lock.json similarity index 100% rename from test-apps/new-cypress-config/redirect/package-lock.json rename to test-apps/redirect/package-lock.json diff --git a/test-apps/redirect/package.json b/test-apps/redirect/package.json new file mode 100644 index 00000000..ec563ba5 --- /dev/null +++ b/test-apps/redirect/package.json @@ -0,0 +1,16 @@ +{ + "name": "example-redirect", + "description": "Tests a frontend app that redirects, through un-instrumented code, back to itself.", + "devDependencies": { + "@babel/core": "^7.12.0" + }, + "scripts": { + "cy:run": "cypress run", + "start:app": "parcel serve -p 1234 index.html", + "start:other-app": "parcel serve -p 1235 index.html", + "pretest": "rimraf .nyc_output .cache coverage dist", + "test": "start-test start:app http://localhost:1234 start:other-app http://localhost:1235 cy:run", + "coverage:verify": "npx nyc report --check-coverage true --lines 100", + "coverage:check-files": "check-coverage utils.js && only-covered utils.js" + } +} diff --git a/test-apps/redirect/utils.js b/test-apps/redirect/utils.js new file mode 100644 index 00000000..9d585a99 --- /dev/null +++ b/test-apps/redirect/utils.js @@ -0,0 +1,4 @@ +export const returnToApp = () => { + document.body + .appendChild(document.createTextNode('Returned to app')) +} From 216a5375b69b23db6ec6fb673e2656357b48ffa2 Mon Sep 17 00:00:00 2001 From: Matthew Schile Date: Mon, 23 Oct 2023 17:24:39 -0600 Subject: [PATCH 09/12] updating circleci config --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0aea9163..7573900f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -185,5 +185,5 @@ workflows: - test-ts-example - test-unit-tests-js - test-use-webpack + - test-redirect - windows_test - - redirect From 3a477547db4946e3a09150876651fe1c2c3403d1 Mon Sep 17 00:00:00 2001 From: Matthew Schile Date: Mon, 23 Oct 2023 17:30:16 -0600 Subject: [PATCH 10/12] exclude support.js --- .nycrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.nycrc.json b/.nycrc.json index 6f8691fd..77cfabeb 100644 --- a/.nycrc.json +++ b/.nycrc.json @@ -1,6 +1,7 @@ { "exclude": [ "support-utils.js", - "task-utils.js" + "task-utils.js", + "support.js" ] } From 998d58bfc5f5e63e991ff20dce6d81997b65c64d Mon Sep 17 00:00:00 2001 From: Matthew Schile Date: Mon, 23 Oct 2023 17:48:23 -0600 Subject: [PATCH 11/12] removing support-utils --- .nycrc.json | 1 - 1 file changed, 1 deletion(-) diff --git a/.nycrc.json b/.nycrc.json index 77cfabeb..1c49a1fc 100644 --- a/.nycrc.json +++ b/.nycrc.json @@ -1,6 +1,5 @@ { "exclude": [ - "support-utils.js", "task-utils.js", "support.js" ] From efddda5a47a0dd27db7d6392790b38d277e36227 Mon Sep 17 00:00:00 2001 From: Matthew Schile Date: Mon, 23 Oct 2023 17:51:45 -0600 Subject: [PATCH 12/12] removing unneeded package-lock --- .nycrc.json | 4 +- test-apps/redirect/index.html | 2 +- test-apps/redirect/package-lock.json | 656 --------------------------- 3 files changed, 3 insertions(+), 659 deletions(-) delete mode 100644 test-apps/redirect/package-lock.json diff --git a/.nycrc.json b/.nycrc.json index 1c49a1fc..26e2323b 100644 --- a/.nycrc.json +++ b/.nycrc.json @@ -1,6 +1,6 @@ { "exclude": [ - "task-utils.js", - "support.js" + "support.js", + "task-utils.js" ] } diff --git a/test-apps/redirect/index.html b/test-apps/redirect/index.html index d6d812b7..4c3b55e0 100644 --- a/test-apps/redirect/index.html +++ b/test-apps/redirect/index.html @@ -1,4 +1,4 @@

Test page

- \ No newline at end of file + diff --git a/test-apps/redirect/package-lock.json b/test-apps/redirect/package-lock.json deleted file mode 100644 index 2d51e3d8..00000000 --- a/test-apps/redirect/package-lock.json +++ /dev/null @@ -1,656 +0,0 @@ -{ - "name": "example-redirect", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "example-redirect", - "devDependencies": { - "@babel/core": "^7.12.0" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", - "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", - "dev": true, - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.21.9", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.9.tgz", - "integrity": "sha512-FUGed8kfhyWvbYug/Un/VPJD41rDIgoVVcR+FuzhzOYyRz5uED+Gd3SLZml0Uw2l2aHFb7ZgdW5mGA3G2cCCnQ==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", - "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-compilation-targets": "^7.21.5", - "@babel/helper-module-transforms": "^7.21.5", - "@babel/helpers": "^7.21.5", - "@babel/parser": "^7.21.8", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/generator": { - "version": "7.21.9", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.9.tgz", - "integrity": "sha512-F3fZga2uv09wFdEjEQIJxXALXfz0+JaOb7SabvVMmjHxeVTuGW8wgE8Vp1Hd7O+zMTYtcfEISGRzPkeiaPPsvg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.21.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz", - "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.21.5", - "@babel/helper-validator-option": "^7.21.0", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz", - "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", - "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", - "dev": true, - "dependencies": { - "@babel/template": "^7.20.7", - "@babel/types": "^7.21.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "dev": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", - "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.21.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz", - "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-module-imports": "^7.21.4", - "@babel/helper-simple-access": "^7.21.5", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz", - "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.21.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", - "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", - "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz", - "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==", - "dev": true, - "dependencies": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "dev": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.21.9", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.9.tgz", - "integrity": "sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g==", - "dev": true, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/template": { - "version": "7.21.9", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.21.9.tgz", - "integrity": "sha512-MK0X5k8NKOuWRamiEfc3KEJiHMTkGZNUjzMipqCGDDc6ijRl/B7RGSKVGncu4Ro/HdyzzY6cmoXuKI2Gffk7vQ==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.21.4", - "@babel/parser": "^7.21.9", - "@babel/types": "^7.21.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", - "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.5", - "@babel/types": "^7.21.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", - "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", - "dev": true, - "dependencies": { - "@babel/helper-string-parser": "^7.21.5", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dev": true, - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", - "dev": true, - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001489", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001489.tgz", - "integrity": "sha512-x1mgZEXK8jHIfAxm+xgdpHpk50IN3z3q3zP261/WS+uvePxW8izXuCu6AHz0lkuYTlATDehiZ/tNyYBdSQsOUQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/electron-to-chromium": { - "version": "1.4.408", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.408.tgz", - "integrity": "sha512-vjeaj0u/UYnzA/CIdGXzzcxRLCqRwREYc9YfaWInjIEr7/XPttZ6ShpyqapchEy0S2r6LpLjDBTnNj7ZxnxJKg==", - "dev": true - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/node-releases": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", - "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==", - "dev": true - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - } - } -}