├── .gitignore ├── README.md ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ └── iframes.spec.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | # general 2 | node_modules 3 | package-lock.json 4 | 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/descomplicando-iframes-com-cypress/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/descomplicando-iframes-com-cypress/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/iframes.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/descomplicando-iframes-com-cypress/HEAD/cypress/integration/iframes.spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/descomplicando-iframes-com-cypress/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/descomplicando-iframes-com-cypress/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/descomplicando-iframes-com-cypress/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlucax/descomplicando-iframes-com-cypress/HEAD/package.json --------------------------------------------------------------------------------