├── .eslintrc.json ├── .github └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── jest.config.js ├── package.json ├── src ├── mailosaurCommands.d.ts ├── mailosaurCommands.js ├── register.js └── request.js └── test └── react-app ├── .env ├── .gitignore ├── babel.config.js ├── cypress.config.js ├── cypress ├── e2e │ ├── devices.cy.js │ ├── files.cy.js │ ├── messages.cy.js │ ├── previews.cy.js │ ├── servers.cy.js │ └── usage.cy.js ├── fixtures │ └── cat.png ├── plugins │ └── index.js └── support │ ├── commands.js │ └── e2e.js ├── package-lock.json ├── package.json ├── public └── index.html ├── serve.json └── src ├── App.css ├── App.js ├── index.css └── index.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/package.json -------------------------------------------------------------------------------- /src/mailosaurCommands.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/src/mailosaurCommands.d.ts -------------------------------------------------------------------------------- /src/mailosaurCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/src/mailosaurCommands.js -------------------------------------------------------------------------------- /src/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/src/register.js -------------------------------------------------------------------------------- /src/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/src/request.js -------------------------------------------------------------------------------- /test/react-app/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/.env -------------------------------------------------------------------------------- /test/react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/.gitignore -------------------------------------------------------------------------------- /test/react-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/babel.config.js -------------------------------------------------------------------------------- /test/react-app/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/cypress.config.js -------------------------------------------------------------------------------- /test/react-app/cypress/e2e/devices.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/cypress/e2e/devices.cy.js -------------------------------------------------------------------------------- /test/react-app/cypress/e2e/files.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/cypress/e2e/files.cy.js -------------------------------------------------------------------------------- /test/react-app/cypress/e2e/messages.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/cypress/e2e/messages.cy.js -------------------------------------------------------------------------------- /test/react-app/cypress/e2e/previews.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/cypress/e2e/previews.cy.js -------------------------------------------------------------------------------- /test/react-app/cypress/e2e/servers.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/cypress/e2e/servers.cy.js -------------------------------------------------------------------------------- /test/react-app/cypress/e2e/usage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/cypress/e2e/usage.cy.js -------------------------------------------------------------------------------- /test/react-app/cypress/fixtures/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/cypress/fixtures/cat.png -------------------------------------------------------------------------------- /test/react-app/cypress/plugins/index.js: -------------------------------------------------------------------------------- 1 | module.exports = () => {}; 2 | -------------------------------------------------------------------------------- /test/react-app/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/cypress/support/commands.js -------------------------------------------------------------------------------- /test/react-app/cypress/support/e2e.js: -------------------------------------------------------------------------------- 1 | import './commands'; 2 | -------------------------------------------------------------------------------- /test/react-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/package-lock.json -------------------------------------------------------------------------------- /test/react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/package.json -------------------------------------------------------------------------------- /test/react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/public/index.html -------------------------------------------------------------------------------- /test/react-app/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/serve.json -------------------------------------------------------------------------------- /test/react-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/src/App.css -------------------------------------------------------------------------------- /test/react-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/src/App.js -------------------------------------------------------------------------------- /test/react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/src/index.css -------------------------------------------------------------------------------- /test/react-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailosaur/cypress-mailosaur/HEAD/test/react-app/src/index.js --------------------------------------------------------------------------------