├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── cypress.json ├── cypress ├── integration │ ├── fixture.spec.js │ ├── index.html │ └── spec.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── index.d.ts ├── index.js ├── package.json ├── plugin.js └── util.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/integration/fixture.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/cypress/integration/fixture.spec.js -------------------------------------------------------------------------------- /cypress/integration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/cypress/integration/index.html -------------------------------------------------------------------------------- /cypress/integration/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/cypress/integration/spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/package.json -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/plugin.js -------------------------------------------------------------------------------- /util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nanciee/cypress-autorecord/HEAD/util.js --------------------------------------------------------------------------------