├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yml │ ├── check-package-version.yml │ ├── publish-to-github.yml │ └── publish-to-npm.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cspell.config.js ├── cspell └── missing.txt ├── eslint.config.mjs ├── index.d.ts ├── index.js ├── jest.config.js ├── package.json ├── plugin.d.ts ├── plugin.js ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── renovate.json ├── sonar-project.properties ├── src ├── LocalStorage.js ├── constants.js ├── plugin.js └── register.js ├── stryker.conf.js ├── test-e2e ├── app │ ├── .env │ ├── .gitignore │ ├── package.json │ ├── public │ │ └── index.html │ ├── serve.json │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── components │ │ ├── cookies-button │ │ │ ├── CookiesButton.css │ │ │ ├── CookiesButton.js │ │ │ └── index.js │ │ └── cookies-value │ │ │ ├── CookiesValue.js │ │ │ └── index.js │ │ ├── data │ │ └── user-preferences │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ ├── origins.js │ │ │ └── selectors.js │ │ ├── index.css │ │ ├── index.js │ │ └── modules │ │ ├── accept-cookies │ │ ├── AcceptCookies.js │ │ └── index.js │ │ ├── cookies-value │ │ ├── CookiesValue.js │ │ └── index.js │ │ ├── localstorage-warning │ │ ├── LocalStorageWarning.css │ │ ├── LocalStorageWarning.js │ │ └── index.js │ │ └── reject-cookies │ │ ├── RejectCookies.js │ │ └── index.js ├── cypress-9-no-plugin │ ├── .gitignore │ ├── babel.config.js │ ├── cypress.config.js │ ├── cypress │ │ ├── .eslintrc.json │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── index.js │ ├── package.json │ └── scripts │ │ └── copySpecs.js ├── cypress-9 │ ├── .gitignore │ ├── babel.config.js │ ├── cypress.config.js │ ├── cypress │ │ ├── .eslintrc.json │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── index.js │ ├── package.json │ └── scripts │ │ └── copySpecs.js ├── cypress-latest-no-plugin │ ├── .gitignore │ ├── babel.config.js │ ├── cypress.config.js │ ├── cypress │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── e2e.js │ └── package.json ├── cypress-latest │ ├── .gitignore │ ├── babel.config.js │ ├── cypress.config.js │ ├── cypress │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── e2e.js │ └── package.json ├── cypress-typescript │ ├── .eslintignore │ ├── .gitignore │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ ├── assertions-example.cy.ts │ │ │ ├── cookies-example.cy.ts │ │ │ ├── cookies.cy.ts │ │ │ ├── localstorage-disabled.cy.ts │ │ │ └── named-snapshots.cy.ts │ │ └── support │ │ │ ├── commands.js │ │ │ └── e2e.js │ ├── package.json │ ├── scripts │ │ └── copyLibrary.js │ └── tsconfig.json └── specs │ └── cypress │ └── e2e │ ├── across-specs │ ├── restore.cy.js │ └── save.cy.js │ ├── assertions-example.cy.js │ ├── cookies-example.cy.js │ ├── cookies.cy.js │ ├── localstorage-disabled.cy.js │ ├── named-across-specs │ ├── restore-after-clear.cy.js │ ├── restore.cy.js │ └── save.cy.js │ ├── named-snapshots.cy.js │ └── no-across-specs │ ├── restore.cy.js │ └── save.cy.js ├── test ├── Cy.mock.js ├── Cypress.mock.js ├── LocalStorage.mock.js ├── LocalStorage.spec.js ├── LocalStorageNode.spec.js └── register.spec.js └── tsconfig.json /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-package-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/.github/workflows/check-package-version.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/.github/workflows/publish-to-github.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/.github/workflows/publish-to-npm.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | pnpm run lint-staged 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/README.md -------------------------------------------------------------------------------- /cspell.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/cspell.config.js -------------------------------------------------------------------------------- /cspell/missing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/cspell/missing.txt -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/package.json -------------------------------------------------------------------------------- /plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/plugin.d.ts -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./src/plugin"); 2 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/renovate.json -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/LocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/src/LocalStorage.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/src/plugin.js -------------------------------------------------------------------------------- /src/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/src/register.js -------------------------------------------------------------------------------- /stryker.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/stryker.conf.js -------------------------------------------------------------------------------- /test-e2e/app/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/.env -------------------------------------------------------------------------------- /test-e2e/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/.gitignore -------------------------------------------------------------------------------- /test-e2e/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/package.json -------------------------------------------------------------------------------- /test-e2e/app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/public/index.html -------------------------------------------------------------------------------- /test-e2e/app/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/serve.json -------------------------------------------------------------------------------- /test-e2e/app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/App.css -------------------------------------------------------------------------------- /test-e2e/app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/App.js -------------------------------------------------------------------------------- /test-e2e/app/src/components/cookies-button/CookiesButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/components/cookies-button/CookiesButton.css -------------------------------------------------------------------------------- /test-e2e/app/src/components/cookies-button/CookiesButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/components/cookies-button/CookiesButton.js -------------------------------------------------------------------------------- /test-e2e/app/src/components/cookies-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/components/cookies-button/index.js -------------------------------------------------------------------------------- /test-e2e/app/src/components/cookies-value/CookiesValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/components/cookies-value/CookiesValue.js -------------------------------------------------------------------------------- /test-e2e/app/src/components/cookies-value/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/components/cookies-value/index.js -------------------------------------------------------------------------------- /test-e2e/app/src/data/user-preferences/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/data/user-preferences/actions.js -------------------------------------------------------------------------------- /test-e2e/app/src/data/user-preferences/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/data/user-preferences/index.js -------------------------------------------------------------------------------- /test-e2e/app/src/data/user-preferences/origins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/data/user-preferences/origins.js -------------------------------------------------------------------------------- /test-e2e/app/src/data/user-preferences/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/data/user-preferences/selectors.js -------------------------------------------------------------------------------- /test-e2e/app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/index.css -------------------------------------------------------------------------------- /test-e2e/app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/index.js -------------------------------------------------------------------------------- /test-e2e/app/src/modules/accept-cookies/AcceptCookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/modules/accept-cookies/AcceptCookies.js -------------------------------------------------------------------------------- /test-e2e/app/src/modules/accept-cookies/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AcceptCookies"; 2 | -------------------------------------------------------------------------------- /test-e2e/app/src/modules/cookies-value/CookiesValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/modules/cookies-value/CookiesValue.js -------------------------------------------------------------------------------- /test-e2e/app/src/modules/cookies-value/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./CookiesValue"; 2 | -------------------------------------------------------------------------------- /test-e2e/app/src/modules/localstorage-warning/LocalStorageWarning.css: -------------------------------------------------------------------------------- 1 | #localstorage-disabled-warning { 2 | color: #ff9900; 3 | } 4 | -------------------------------------------------------------------------------- /test-e2e/app/src/modules/localstorage-warning/LocalStorageWarning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/modules/localstorage-warning/LocalStorageWarning.js -------------------------------------------------------------------------------- /test-e2e/app/src/modules/localstorage-warning/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LocalStorageWarning"; 2 | -------------------------------------------------------------------------------- /test-e2e/app/src/modules/reject-cookies/RejectCookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/app/src/modules/reject-cookies/RejectCookies.js -------------------------------------------------------------------------------- /test-e2e/app/src/modules/reject-cookies/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./RejectCookies"; 2 | -------------------------------------------------------------------------------- /test-e2e/cypress-9-no-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9-no-plugin/.gitignore -------------------------------------------------------------------------------- /test-e2e/cypress-9-no-plugin/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9-no-plugin/babel.config.js -------------------------------------------------------------------------------- /test-e2e/cypress-9-no-plugin/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9-no-plugin/cypress.config.js -------------------------------------------------------------------------------- /test-e2e/cypress-9-no-plugin/cypress/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9-no-plugin/cypress/.eslintrc.json -------------------------------------------------------------------------------- /test-e2e/cypress-9-no-plugin/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9-no-plugin/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-e2e/cypress-9-no-plugin/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9-no-plugin/cypress/support/commands.js -------------------------------------------------------------------------------- /test-e2e/cypress-9-no-plugin/cypress/support/index.js: -------------------------------------------------------------------------------- 1 | import "./commands"; 2 | -------------------------------------------------------------------------------- /test-e2e/cypress-9-no-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9-no-plugin/package.json -------------------------------------------------------------------------------- /test-e2e/cypress-9-no-plugin/scripts/copySpecs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9-no-plugin/scripts/copySpecs.js -------------------------------------------------------------------------------- /test-e2e/cypress-9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9/.gitignore -------------------------------------------------------------------------------- /test-e2e/cypress-9/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9/babel.config.js -------------------------------------------------------------------------------- /test-e2e/cypress-9/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9/cypress.config.js -------------------------------------------------------------------------------- /test-e2e/cypress-9/cypress/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9/cypress/.eslintrc.json -------------------------------------------------------------------------------- /test-e2e/cypress-9/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-e2e/cypress-9/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9/cypress/support/commands.js -------------------------------------------------------------------------------- /test-e2e/cypress-9/cypress/support/index.js: -------------------------------------------------------------------------------- 1 | import "./commands"; 2 | -------------------------------------------------------------------------------- /test-e2e/cypress-9/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9/package.json -------------------------------------------------------------------------------- /test-e2e/cypress-9/scripts/copySpecs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-9/scripts/copySpecs.js -------------------------------------------------------------------------------- /test-e2e/cypress-latest-no-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-latest-no-plugin/.gitignore -------------------------------------------------------------------------------- /test-e2e/cypress-latest-no-plugin/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-latest-no-plugin/babel.config.js -------------------------------------------------------------------------------- /test-e2e/cypress-latest-no-plugin/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-latest-no-plugin/cypress.config.js -------------------------------------------------------------------------------- /test-e2e/cypress-latest-no-plugin/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-latest-no-plugin/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-e2e/cypress-latest-no-plugin/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-latest-no-plugin/cypress/support/commands.js -------------------------------------------------------------------------------- /test-e2e/cypress-latest-no-plugin/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | import "./commands"; 2 | -------------------------------------------------------------------------------- /test-e2e/cypress-latest-no-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-latest-no-plugin/package.json -------------------------------------------------------------------------------- /test-e2e/cypress-latest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-latest/.gitignore -------------------------------------------------------------------------------- /test-e2e/cypress-latest/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-latest/babel.config.js -------------------------------------------------------------------------------- /test-e2e/cypress-latest/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-latest/cypress.config.js -------------------------------------------------------------------------------- /test-e2e/cypress-latest/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-latest/cypress/plugins/index.js -------------------------------------------------------------------------------- /test-e2e/cypress-latest/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-latest/cypress/support/commands.js -------------------------------------------------------------------------------- /test-e2e/cypress-latest/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | import "./commands"; 2 | -------------------------------------------------------------------------------- /test-e2e/cypress-latest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-latest/package.json -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/.eslintignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-typescript/.gitignore -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-typescript/cypress.config.ts -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/cypress/e2e/assertions-example.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-typescript/cypress/e2e/assertions-example.cy.ts -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/cypress/e2e/cookies-example.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-typescript/cypress/e2e/cookies-example.cy.ts -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/cypress/e2e/cookies.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-typescript/cypress/e2e/cookies.cy.ts -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/cypress/e2e/localstorage-disabled.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-typescript/cypress/e2e/localstorage-disabled.cy.ts -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/cypress/e2e/named-snapshots.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-typescript/cypress/e2e/named-snapshots.cy.ts -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-typescript/cypress/support/commands.js -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-typescript/cypress/support/e2e.js -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-typescript/package.json -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/scripts/copyLibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-typescript/scripts/copyLibrary.js -------------------------------------------------------------------------------- /test-e2e/cypress-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/cypress-typescript/tsconfig.json -------------------------------------------------------------------------------- /test-e2e/specs/cypress/e2e/across-specs/restore.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/specs/cypress/e2e/across-specs/restore.cy.js -------------------------------------------------------------------------------- /test-e2e/specs/cypress/e2e/across-specs/save.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/specs/cypress/e2e/across-specs/save.cy.js -------------------------------------------------------------------------------- /test-e2e/specs/cypress/e2e/assertions-example.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/specs/cypress/e2e/assertions-example.cy.js -------------------------------------------------------------------------------- /test-e2e/specs/cypress/e2e/cookies-example.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/specs/cypress/e2e/cookies-example.cy.js -------------------------------------------------------------------------------- /test-e2e/specs/cypress/e2e/cookies.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/specs/cypress/e2e/cookies.cy.js -------------------------------------------------------------------------------- /test-e2e/specs/cypress/e2e/localstorage-disabled.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/specs/cypress/e2e/localstorage-disabled.cy.js -------------------------------------------------------------------------------- /test-e2e/specs/cypress/e2e/named-across-specs/restore-after-clear.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/specs/cypress/e2e/named-across-specs/restore-after-clear.cy.js -------------------------------------------------------------------------------- /test-e2e/specs/cypress/e2e/named-across-specs/restore.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/specs/cypress/e2e/named-across-specs/restore.cy.js -------------------------------------------------------------------------------- /test-e2e/specs/cypress/e2e/named-across-specs/save.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/specs/cypress/e2e/named-across-specs/save.cy.js -------------------------------------------------------------------------------- /test-e2e/specs/cypress/e2e/named-snapshots.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/specs/cypress/e2e/named-snapshots.cy.js -------------------------------------------------------------------------------- /test-e2e/specs/cypress/e2e/no-across-specs/restore.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/specs/cypress/e2e/no-across-specs/restore.cy.js -------------------------------------------------------------------------------- /test-e2e/specs/cypress/e2e/no-across-specs/save.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test-e2e/specs/cypress/e2e/no-across-specs/save.cy.js -------------------------------------------------------------------------------- /test/Cy.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test/Cy.mock.js -------------------------------------------------------------------------------- /test/Cypress.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test/Cypress.mock.js -------------------------------------------------------------------------------- /test/LocalStorage.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test/LocalStorage.mock.js -------------------------------------------------------------------------------- /test/LocalStorage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test/LocalStorage.spec.js -------------------------------------------------------------------------------- /test/LocalStorageNode.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test/LocalStorageNode.spec.js -------------------------------------------------------------------------------- /test/register.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/test/register.spec.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbrea/cypress-localstorage-commands/HEAD/tsconfig.json --------------------------------------------------------------------------------