├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── .husky ├── pre-commit └── pre-push ├── .scripts ├── merge.js ├── remove.sh └── update-badge.js ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.dev.md ├── README.md ├── cypress.config.ts ├── cypress.cucumber-test.config.ts ├── cypress.cucumber.config.ts ├── cypress.e2e.config.ts ├── docs ├── cy_steps.jpg ├── gherkin.md ├── interface.md ├── links.jpg ├── request.jpg ├── requests.jpg ├── screenshots.md └── wrap_cmd.jpg ├── integration ├── .eslintrc.js ├── common │ ├── constants.ts │ └── helper.ts ├── cucumber-steps │ └── common.ts ├── cucumber │ ├── first.feature │ ├── first.ts │ └── tags.feature ├── e2e │ ├── assertions │ │ ├── assertions.cy.ts │ │ └── uncaught-error.cy.ts │ ├── attachments │ │ ├── add-info.cy.ts │ │ ├── screenshots-no-name.cy.ts │ │ ├── screenshots-with-name.cy.ts │ │ ├── step-args.test.ts │ │ ├── video-fail-retry.cy.ts │ │ ├── video-fail.cy.ts │ │ └── video-pass.cy.ts │ ├── commands │ │ ├── custom-command.cy.js │ │ └── do-sync-command.cy.ts │ ├── duplicate.cy.ts │ ├── duration.cy.ts │ ├── env-info.cy.ts │ ├── events.cy.ts │ ├── example │ │ └── report.cy.ts │ ├── groups │ │ └── groups.cy.ts │ ├── hooks │ │ ├── before-all-in-suite.cy.ts │ │ ├── before-each-fail-in-test-then-in-hook.cy.ts │ │ ├── before-each-fail-retry-fail.cy.ts │ │ ├── before-each-fail-retry-pass.cy.ts │ │ ├── before-each-fail.cy.ts │ │ ├── before-each-retry-one-fail.cy.ts │ │ ├── hook-fail-all-step.cy.ts │ │ ├── hook-fail-all.cy.ts │ │ ├── hook.attach.cy.ts │ │ ├── hook.cy.ts │ │ └── regress.cy.ts │ ├── interface.test.ts │ ├── log-commands │ │ └── log-commands.cy.ts │ ├── long-command-name.cy.ts │ ├── one.cy.ts │ ├── one2.cy.ts │ ├── requests.cy.ts │ ├── retries │ │ ├── retries-fail.cy.ts │ │ └── retries-pass.cy.ts │ ├── simple-pass.cy.ts │ ├── skip │ │ ├── skip-suite.cy.ts │ │ ├── skipped-inside.cy.ts │ │ ├── skipped-many.cy.ts │ │ └── skipped.cy.ts │ ├── spec.cy.ts │ ├── status.test.ts │ ├── steps │ │ └── session.cy.ts │ ├── suite.cy.ts │ ├── tags │ │ └── meta-info-by-tags.test.ts │ ├── visit.cy.ts │ ├── watch-pass.cy.ts │ ├── watch.cy.ts │ └── xhr-requests.cy.ts ├── plugins │ ├── events-forwarder.ts │ ├── index.ts │ ├── test-server.ts │ └── ts-preprocessor.ts ├── support │ ├── index.ts │ └── setup.d.ts └── tsconfig.json ├── jest.config.ts ├── jest.setup.js ├── nyc.config.js ├── package.json ├── src ├── commands │ └── index.ts ├── common │ ├── command-names.ts │ ├── index.ts │ ├── types.ts │ └── utils.ts ├── cypress │ ├── cypress.ts │ └── types.ts ├── index.ts ├── plugins │ ├── allure-global-hook.ts │ ├── allure-reporter-plugin.ts │ ├── allure-sdk-reporter.d.ts │ ├── allure-types.ts │ ├── allure.ts │ ├── fs-tools.ts │ ├── helper.ts │ ├── index.ts │ ├── server.ts │ ├── task-manager.test.ts │ └── task-manager.ts ├── setup │ ├── allure-mocha-reporter.ts │ ├── custom-commands-handling.ts │ ├── cypress-events.ts │ ├── group-handling.ts │ ├── helper.ts │ ├── index.ts │ ├── process-tags.ts │ ├── request-events.ts │ ├── requests-handler.ts │ ├── screenshots.ts │ ├── setup-gherkin.ts │ └── websocket.ts └── support.ts ├── tests ├── .eslintrc.js ├── cy-helper │ ├── cucumber-utils.ts │ ├── utils-v2.ts │ └── utils.ts ├── mocks │ ├── console-mock.ts │ └── cy-mock.ts ├── test-folder │ ├── allure-plugin │ │ ├── before-each-fail-retry.test.ts │ │ ├── hook-fail-all.test.ts │ │ ├── hook.test.ts │ │ ├── one.test.ts │ │ ├── retries-fail.test.ts │ │ ├── retries-pass.test.ts │ │ └── simple-pass.test.ts │ ├── common │ │ ├── command-names.test.ts │ │ ├── reporter-add-info.test.ts │ │ ├── reporter-end-step.test.ts │ │ ├── reporter-server.test.ts │ │ ├── reporter-unit.test.ts │ │ ├── reporter.test.ts │ │ ├── tms-issue-id.test.ts │ │ ├── tms-issue.test.ts │ │ ├── utils-wrap-hooks.test.ts │ │ └── utils.test.ts │ └── mocha-events │ │ ├── attachments │ │ ├── screenshot-command-setting.test.ts │ │ ├── screenshot-command.test.ts │ │ ├── screenshot-global-hook-fail.test.ts │ │ └── screenshot-hook-fail.test.ts │ │ ├── commands │ │ ├── custom-command-no-return-chain-2.test.ts │ │ ├── custom-command-no-return-chain.test.ts │ │ ├── custom-command.test.ts │ │ ├── do-sync-command.test.ts │ │ └── long-name-command.test.ts │ │ ├── cucumber │ │ ├── session-gherkin.test.ts │ │ ├── simple-gherkin.test.ts │ │ ├── tags-gherkin-complex.test.ts │ │ └── tags-gherkin.test.ts │ │ ├── duration │ │ └── test-duration.test.ts │ │ ├── events │ │ ├── plugin-events-test-fail.test.ts │ │ └── plugin-events-test-no-allure.test.ts │ │ ├── failures │ │ ├── before-all-hook │ │ │ └── fail-one-test-before-all-fail.test.ts │ │ ├── fail-one-test-hooks.test.ts │ │ ├── fail-one-test.test.ts │ │ ├── global-hook │ │ │ ├── fail-one-test-before-all-global-fail-second.test.ts │ │ │ ├── fail-one-test-before-all-global-fail.test.ts │ │ │ └── fail-several-tests-before-all-global-fail.test.ts │ │ └── test-retries │ │ │ ├── fail-one-test-before-each-retry-with-after-each.test.ts │ │ │ ├── fail-one-test-before-each-retry.test.ts │ │ │ ├── fail-one-test-retry-with-after-each.test.ts │ │ │ └── fail-one-test-retry.test.ts │ │ ├── hooks │ │ ├── all-hook.test.ts │ │ ├── before-after--nested-suite │ │ │ ├── before-after--nested-suite.test.ts │ │ │ ├── data-nested-suite-after-fail-simple-04.ts │ │ │ ├── data-nested-suite-after-pass-06.ts │ │ │ ├── data-nested-suite-before-fail-01.ts │ │ │ ├── data-nested-suite-before-fail-simple-03.ts │ │ │ ├── data-nested-suite-before-pass-02.ts │ │ │ ├── data-nested-suite-pass-07.ts │ │ │ └── data-nested-suite-with-global-hook-05.ts │ │ ├── before-after-each--nested-suite │ │ │ ├── before-after-each--nested-suite.test.ts │ │ │ ├── data-after-each-fail-nested-suite-several.ts │ │ │ ├── data-after-each-fail-nested-suite.ts │ │ │ ├── data-before-each-fail-nested-suite-several.ts │ │ │ └── data-before-each-fail-nested-suite.ts │ │ ├── before-after-each--retry │ │ │ ├── before-after-each-retry.test.ts │ │ │ ├── data-before-each-retry-fail.ts │ │ │ └── data-before-each-retry-pass-after-fail.ts │ │ ├── before-after-each │ │ │ ├── before-after-each.test.ts │ │ │ ├── data-after-each-fail-several-tests.ts │ │ │ ├── data-after-each-fail.ts │ │ │ ├── data-after-each-named-pass.ts │ │ │ ├── data-after-each-pass-two-tests.ts │ │ │ ├── data-after-each-pass.ts │ │ │ ├── data-after-each-skip.ts │ │ │ ├── data-before-each-fail-several-tests.ts │ │ │ ├── data-before-each-fail.ts │ │ │ ├── data-before-each-named-pass.ts │ │ │ ├── data-before-each-pass-two-tests.ts │ │ │ ├── data-before-each-pass.ts │ │ │ └── data-before-each-skip.ts │ │ ├── before-after │ │ │ ├── before-after.test.ts │ │ │ └── data-before-and-after-failure.ts │ │ ├── regression-steps.test.ts │ │ └── synthetic-tests-creation.test.ts │ │ ├── interface │ │ ├── attachment.test.ts │ │ ├── delete-res.test.ts │ │ ├── description-html.test.ts │ │ ├── full-name.test.ts │ │ ├── history-id.test.ts │ │ ├── label-sync.test.ts │ │ ├── label.test.ts │ │ ├── links.test.ts │ │ ├── meta-info-tags.test.ts │ │ ├── no-allure.test.ts │ │ ├── parameter.test.ts │ │ ├── step.test.ts │ │ ├── test-status-and-details.test.ts │ │ ├── write-categories-file.test.ts │ │ ├── write-categories.test.ts │ │ └── write-info.test.ts │ │ ├── only │ │ └── only-describe.test.ts │ │ ├── other │ │ ├── debug-log.test.ts │ │ └── process-tags │ │ │ ├── data-process-tags.ts │ │ │ └── process-tags.test.ts │ │ ├── passes │ │ ├── DELETE_one-test-after-each.ts │ │ ├── DELETE_one-test-before-each.ts │ │ ├── DELETE_two-tests-after-each.ts │ │ ├── DELETE_two-tests-before-each.ts │ │ ├── one-test-after-all-global.test.ts │ │ ├── one-test-before-all-global.test.ts │ │ ├── one-test-before-each-global.test.ts │ │ ├── one-test-before-each-retry-pass.test.ts │ │ ├── one-test-retry-pass.test.ts │ │ ├── one-test.test.ts │ │ └── two-tests.test.ts │ │ ├── regression │ │ ├── root-suite-regression-no-watch.test.ts │ │ ├── root-suite-regression-watch.test.ts │ │ └── steps.test.ts │ │ ├── requests │ │ ├── requests-from-app │ │ │ ├── data-request-handlers.ts │ │ │ ├── data-request-xhr.ts │ │ │ ├── request-handler-add-bodies-interception.test.ts │ │ │ ├── request-handler-add-bodies-specific-requests.test.ts │ │ │ ├── request-handler-add-bodies.test.ts │ │ │ └── requests-from-app.test.ts │ │ ├── requests-redirects.test.ts │ │ └── requests.test.ts │ │ ├── settings │ │ ├── log-commands-skip-steps-asterisk.test.ts │ │ ├── log-commands-skip-steps-other.test.ts │ │ ├── log-commands-skip-steps.test.ts │ │ ├── log-commands.test.ts │ │ └── no-video.test.ts │ │ ├── skips │ │ ├── DELETE_one-test-skip-before-after-each.ts │ │ ├── one-test-skip-inside-before-after-each.test.ts │ │ ├── one-test-skip-inside.test.ts │ │ ├── one-test-skip.test.ts │ │ ├── several-tests-skip.test.ts │ │ ├── skip-describe-by-skip.test.ts │ │ └── skip-describe.test.ts │ │ ├── steps │ │ ├── assertions │ │ │ ├── assertions.test.ts │ │ │ ├── data-assertions-one-failed-for-command.ts │ │ │ ├── data-assertions-one-passed-for-command.ts │ │ │ ├── data-assertions-parent-step-status.ts │ │ │ ├── data-assertions-several-failed-for-command.ts │ │ │ ├── data-assertions-several-passed-for-command.ts │ │ │ ├── data-assertions-sync-assertion.ts │ │ │ └── visit-html.ts │ │ ├── group-logs │ │ │ ├── data-group-log-session.ts │ │ │ ├── data-group-log.ts │ │ │ └── group-logs.test.ts │ │ ├── origin │ │ │ ├── data-origin.ts │ │ │ ├── origin.test.ts │ │ │ └── visit-html.ts │ │ ├── uncaught-exception │ │ │ ├── data-uncaught-exception.ts │ │ │ └── uncaught-exception.test.ts │ │ └── within │ │ │ ├── data-ignore-within.ts │ │ │ ├── data-within.ts │ │ │ └── within.test.ts │ │ ├── suites │ │ ├── suite-overrides-delete-labels.test.ts │ │ ├── suite-overrides-parent-suite.test.ts │ │ ├── suite-overrides-sub-suite.test.ts │ │ ├── suite-overrides-suite.test.ts │ │ ├── suites-nested-with-global-hooks-parent.test.ts │ │ └── suites-nested-with-hooks-parent.test.ts │ │ └── v2 │ │ ├── attachments │ │ └── video │ │ │ ├── video-when-fail │ │ │ ├── cypress │ │ │ │ ├── test.cy.ts │ │ │ │ └── test2.cy.ts │ │ │ └── video-when-fail.test.ts │ │ │ └── video-when-pass │ │ │ ├── cypress │ │ │ ├── test.cy.ts │ │ │ └── test2.cy.ts │ │ │ └── video-when-pass.test.ts │ │ └── suites │ │ └── before-after--nested-suite │ │ ├── nested-suite-before-fail │ │ ├── cypress │ │ │ └── spec.cy.ts │ │ └── nested-suite-before-fail.test.ts │ │ └── nested-suite-with-global-hook │ │ ├── cypress │ │ └── spec.cy.ts │ │ └── nested-suite-with-global-hook.test.ts └── tsconfig.json ├── tsconfig.build.json └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.scripts/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/.scripts/merge.js -------------------------------------------------------------------------------- /.scripts/remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/.scripts/remove.sh -------------------------------------------------------------------------------- /.scripts/update-badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/.scripts/update-badge.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/README.dev.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress.cucumber-test.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/cypress.cucumber-test.config.ts -------------------------------------------------------------------------------- /cypress.cucumber.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/cypress.cucumber.config.ts -------------------------------------------------------------------------------- /cypress.e2e.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/cypress.e2e.config.ts -------------------------------------------------------------------------------- /docs/cy_steps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/docs/cy_steps.jpg -------------------------------------------------------------------------------- /docs/gherkin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/docs/gherkin.md -------------------------------------------------------------------------------- /docs/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/docs/interface.md -------------------------------------------------------------------------------- /docs/links.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/docs/links.jpg -------------------------------------------------------------------------------- /docs/request.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/docs/request.jpg -------------------------------------------------------------------------------- /docs/requests.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/docs/requests.jpg -------------------------------------------------------------------------------- /docs/screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/docs/screenshots.md -------------------------------------------------------------------------------- /docs/wrap_cmd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/docs/wrap_cmd.jpg -------------------------------------------------------------------------------- /integration/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/.eslintrc.js -------------------------------------------------------------------------------- /integration/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/common/constants.ts -------------------------------------------------------------------------------- /integration/common/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/common/helper.ts -------------------------------------------------------------------------------- /integration/cucumber-steps/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/cucumber-steps/common.ts -------------------------------------------------------------------------------- /integration/cucumber/first.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/cucumber/first.feature -------------------------------------------------------------------------------- /integration/cucumber/first.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/cucumber/first.ts -------------------------------------------------------------------------------- /integration/cucumber/tags.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/cucumber/tags.feature -------------------------------------------------------------------------------- /integration/e2e/assertions/assertions.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/assertions/assertions.cy.ts -------------------------------------------------------------------------------- /integration/e2e/assertions/uncaught-error.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/assertions/uncaught-error.cy.ts -------------------------------------------------------------------------------- /integration/e2e/attachments/add-info.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/attachments/add-info.cy.ts -------------------------------------------------------------------------------- /integration/e2e/attachments/screenshots-no-name.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/attachments/screenshots-no-name.cy.ts -------------------------------------------------------------------------------- /integration/e2e/attachments/screenshots-with-name.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/attachments/screenshots-with-name.cy.ts -------------------------------------------------------------------------------- /integration/e2e/attachments/step-args.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/attachments/step-args.test.ts -------------------------------------------------------------------------------- /integration/e2e/attachments/video-fail-retry.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/attachments/video-fail-retry.cy.ts -------------------------------------------------------------------------------- /integration/e2e/attachments/video-fail.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/attachments/video-fail.cy.ts -------------------------------------------------------------------------------- /integration/e2e/attachments/video-pass.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/attachments/video-pass.cy.ts -------------------------------------------------------------------------------- /integration/e2e/commands/custom-command.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/commands/custom-command.cy.js -------------------------------------------------------------------------------- /integration/e2e/commands/do-sync-command.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/commands/do-sync-command.cy.ts -------------------------------------------------------------------------------- /integration/e2e/duplicate.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/duplicate.cy.ts -------------------------------------------------------------------------------- /integration/e2e/duration.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/duration.cy.ts -------------------------------------------------------------------------------- /integration/e2e/env-info.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/env-info.cy.ts -------------------------------------------------------------------------------- /integration/e2e/events.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/events.cy.ts -------------------------------------------------------------------------------- /integration/e2e/example/report.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/example/report.cy.ts -------------------------------------------------------------------------------- /integration/e2e/groups/groups.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/groups/groups.cy.ts -------------------------------------------------------------------------------- /integration/e2e/hooks/before-all-in-suite.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/hooks/before-all-in-suite.cy.ts -------------------------------------------------------------------------------- /integration/e2e/hooks/before-each-fail-in-test-then-in-hook.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/hooks/before-each-fail-in-test-then-in-hook.cy.ts -------------------------------------------------------------------------------- /integration/e2e/hooks/before-each-fail-retry-fail.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/hooks/before-each-fail-retry-fail.cy.ts -------------------------------------------------------------------------------- /integration/e2e/hooks/before-each-fail-retry-pass.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/hooks/before-each-fail-retry-pass.cy.ts -------------------------------------------------------------------------------- /integration/e2e/hooks/before-each-fail.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/hooks/before-each-fail.cy.ts -------------------------------------------------------------------------------- /integration/e2e/hooks/before-each-retry-one-fail.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/hooks/before-each-retry-one-fail.cy.ts -------------------------------------------------------------------------------- /integration/e2e/hooks/hook-fail-all-step.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/hooks/hook-fail-all-step.cy.ts -------------------------------------------------------------------------------- /integration/e2e/hooks/hook-fail-all.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/hooks/hook-fail-all.cy.ts -------------------------------------------------------------------------------- /integration/e2e/hooks/hook.attach.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/hooks/hook.attach.cy.ts -------------------------------------------------------------------------------- /integration/e2e/hooks/hook.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/hooks/hook.cy.ts -------------------------------------------------------------------------------- /integration/e2e/hooks/regress.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/hooks/regress.cy.ts -------------------------------------------------------------------------------- /integration/e2e/interface.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/interface.test.ts -------------------------------------------------------------------------------- /integration/e2e/log-commands/log-commands.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/log-commands/log-commands.cy.ts -------------------------------------------------------------------------------- /integration/e2e/long-command-name.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/long-command-name.cy.ts -------------------------------------------------------------------------------- /integration/e2e/one.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/one.cy.ts -------------------------------------------------------------------------------- /integration/e2e/one2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/one2.cy.ts -------------------------------------------------------------------------------- /integration/e2e/requests.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/requests.cy.ts -------------------------------------------------------------------------------- /integration/e2e/retries/retries-fail.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/retries/retries-fail.cy.ts -------------------------------------------------------------------------------- /integration/e2e/retries/retries-pass.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/retries/retries-pass.cy.ts -------------------------------------------------------------------------------- /integration/e2e/simple-pass.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/simple-pass.cy.ts -------------------------------------------------------------------------------- /integration/e2e/skip/skip-suite.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/skip/skip-suite.cy.ts -------------------------------------------------------------------------------- /integration/e2e/skip/skipped-inside.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/skip/skipped-inside.cy.ts -------------------------------------------------------------------------------- /integration/e2e/skip/skipped-many.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/skip/skipped-many.cy.ts -------------------------------------------------------------------------------- /integration/e2e/skip/skipped.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/skip/skipped.cy.ts -------------------------------------------------------------------------------- /integration/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/spec.cy.ts -------------------------------------------------------------------------------- /integration/e2e/status.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/status.test.ts -------------------------------------------------------------------------------- /integration/e2e/steps/session.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/steps/session.cy.ts -------------------------------------------------------------------------------- /integration/e2e/suite.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/suite.cy.ts -------------------------------------------------------------------------------- /integration/e2e/tags/meta-info-by-tags.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/tags/meta-info-by-tags.test.ts -------------------------------------------------------------------------------- /integration/e2e/visit.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/visit.cy.ts -------------------------------------------------------------------------------- /integration/e2e/watch-pass.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/watch-pass.cy.ts -------------------------------------------------------------------------------- /integration/e2e/watch.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/watch.cy.ts -------------------------------------------------------------------------------- /integration/e2e/xhr-requests.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/e2e/xhr-requests.cy.ts -------------------------------------------------------------------------------- /integration/plugins/events-forwarder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/plugins/events-forwarder.ts -------------------------------------------------------------------------------- /integration/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/plugins/index.ts -------------------------------------------------------------------------------- /integration/plugins/test-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/plugins/test-server.ts -------------------------------------------------------------------------------- /integration/plugins/ts-preprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/plugins/ts-preprocessor.ts -------------------------------------------------------------------------------- /integration/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/support/index.ts -------------------------------------------------------------------------------- /integration/support/setup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/support/setup.d.ts -------------------------------------------------------------------------------- /integration/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/integration/tsconfig.json -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/jest.setup.js -------------------------------------------------------------------------------- /nyc.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/nyc.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/commands/index.ts -------------------------------------------------------------------------------- /src/common/command-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/common/command-names.ts -------------------------------------------------------------------------------- /src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/common/index.ts -------------------------------------------------------------------------------- /src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/common/types.ts -------------------------------------------------------------------------------- /src/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/common/utils.ts -------------------------------------------------------------------------------- /src/cypress/cypress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/cypress/cypress.ts -------------------------------------------------------------------------------- /src/cypress/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/cypress/types.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/plugins/allure-global-hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/plugins/allure-global-hook.ts -------------------------------------------------------------------------------- /src/plugins/allure-reporter-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/plugins/allure-reporter-plugin.ts -------------------------------------------------------------------------------- /src/plugins/allure-sdk-reporter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/plugins/allure-sdk-reporter.d.ts -------------------------------------------------------------------------------- /src/plugins/allure-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/plugins/allure-types.ts -------------------------------------------------------------------------------- /src/plugins/allure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/plugins/allure.ts -------------------------------------------------------------------------------- /src/plugins/fs-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/plugins/fs-tools.ts -------------------------------------------------------------------------------- /src/plugins/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/plugins/helper.ts -------------------------------------------------------------------------------- /src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/plugins/index.ts -------------------------------------------------------------------------------- /src/plugins/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/plugins/server.ts -------------------------------------------------------------------------------- /src/plugins/task-manager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/plugins/task-manager.test.ts -------------------------------------------------------------------------------- /src/plugins/task-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/plugins/task-manager.ts -------------------------------------------------------------------------------- /src/setup/allure-mocha-reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/setup/allure-mocha-reporter.ts -------------------------------------------------------------------------------- /src/setup/custom-commands-handling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/setup/custom-commands-handling.ts -------------------------------------------------------------------------------- /src/setup/cypress-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/setup/cypress-events.ts -------------------------------------------------------------------------------- /src/setup/group-handling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/setup/group-handling.ts -------------------------------------------------------------------------------- /src/setup/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/setup/helper.ts -------------------------------------------------------------------------------- /src/setup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/setup/index.ts -------------------------------------------------------------------------------- /src/setup/process-tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/setup/process-tags.ts -------------------------------------------------------------------------------- /src/setup/request-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/setup/request-events.ts -------------------------------------------------------------------------------- /src/setup/requests-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/setup/requests-handler.ts -------------------------------------------------------------------------------- /src/setup/screenshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/setup/screenshots.ts -------------------------------------------------------------------------------- /src/setup/setup-gherkin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/setup/setup-gherkin.ts -------------------------------------------------------------------------------- /src/setup/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/setup/websocket.ts -------------------------------------------------------------------------------- /src/support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/src/support.ts -------------------------------------------------------------------------------- /tests/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/.eslintrc.js -------------------------------------------------------------------------------- /tests/cy-helper/cucumber-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/cy-helper/cucumber-utils.ts -------------------------------------------------------------------------------- /tests/cy-helper/utils-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/cy-helper/utils-v2.ts -------------------------------------------------------------------------------- /tests/cy-helper/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/cy-helper/utils.ts -------------------------------------------------------------------------------- /tests/mocks/console-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/mocks/console-mock.ts -------------------------------------------------------------------------------- /tests/mocks/cy-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/mocks/cy-mock.ts -------------------------------------------------------------------------------- /tests/test-folder/allure-plugin/before-each-fail-retry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/allure-plugin/before-each-fail-retry.test.ts -------------------------------------------------------------------------------- /tests/test-folder/allure-plugin/hook-fail-all.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/allure-plugin/hook-fail-all.test.ts -------------------------------------------------------------------------------- /tests/test-folder/allure-plugin/hook.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/allure-plugin/hook.test.ts -------------------------------------------------------------------------------- /tests/test-folder/allure-plugin/one.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/allure-plugin/one.test.ts -------------------------------------------------------------------------------- /tests/test-folder/allure-plugin/retries-fail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/allure-plugin/retries-fail.test.ts -------------------------------------------------------------------------------- /tests/test-folder/allure-plugin/retries-pass.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/allure-plugin/retries-pass.test.ts -------------------------------------------------------------------------------- /tests/test-folder/allure-plugin/simple-pass.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/allure-plugin/simple-pass.test.ts -------------------------------------------------------------------------------- /tests/test-folder/common/command-names.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/common/command-names.test.ts -------------------------------------------------------------------------------- /tests/test-folder/common/reporter-add-info.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/common/reporter-add-info.test.ts -------------------------------------------------------------------------------- /tests/test-folder/common/reporter-end-step.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/common/reporter-end-step.test.ts -------------------------------------------------------------------------------- /tests/test-folder/common/reporter-server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/common/reporter-server.test.ts -------------------------------------------------------------------------------- /tests/test-folder/common/reporter-unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/common/reporter-unit.test.ts -------------------------------------------------------------------------------- /tests/test-folder/common/reporter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/common/reporter.test.ts -------------------------------------------------------------------------------- /tests/test-folder/common/tms-issue-id.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/common/tms-issue-id.test.ts -------------------------------------------------------------------------------- /tests/test-folder/common/tms-issue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/common/tms-issue.test.ts -------------------------------------------------------------------------------- /tests/test-folder/common/utils-wrap-hooks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/common/utils-wrap-hooks.test.ts -------------------------------------------------------------------------------- /tests/test-folder/common/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/common/utils.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/attachments/screenshot-command-setting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/attachments/screenshot-command-setting.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/attachments/screenshot-command.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/attachments/screenshot-command.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/attachments/screenshot-global-hook-fail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/attachments/screenshot-global-hook-fail.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/attachments/screenshot-hook-fail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/attachments/screenshot-hook-fail.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/commands/custom-command-no-return-chain-2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/commands/custom-command-no-return-chain-2.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/commands/custom-command-no-return-chain.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/commands/custom-command-no-return-chain.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/commands/custom-command.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/commands/custom-command.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/commands/do-sync-command.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/commands/do-sync-command.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/commands/long-name-command.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/commands/long-name-command.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/cucumber/session-gherkin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/cucumber/session-gherkin.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/cucumber/simple-gherkin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/cucumber/simple-gherkin.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/cucumber/tags-gherkin-complex.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/cucumber/tags-gherkin-complex.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/cucumber/tags-gherkin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/cucumber/tags-gherkin.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/duration/test-duration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/duration/test-duration.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/events/plugin-events-test-fail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/events/plugin-events-test-fail.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/events/plugin-events-test-no-allure.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/events/plugin-events-test-no-allure.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/failures/before-all-hook/fail-one-test-before-all-fail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/failures/before-all-hook/fail-one-test-before-all-fail.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/failures/fail-one-test-hooks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/failures/fail-one-test-hooks.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/failures/fail-one-test.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/failures/fail-one-test.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/failures/global-hook/fail-one-test-before-all-global-fail-second.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/failures/global-hook/fail-one-test-before-all-global-fail-second.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/failures/global-hook/fail-one-test-before-all-global-fail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/failures/global-hook/fail-one-test-before-all-global-fail.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/failures/global-hook/fail-several-tests-before-all-global-fail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/failures/global-hook/fail-several-tests-before-all-global-fail.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/failures/test-retries/fail-one-test-before-each-retry-with-after-each.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/failures/test-retries/fail-one-test-before-each-retry-with-after-each.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/failures/test-retries/fail-one-test-before-each-retry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/failures/test-retries/fail-one-test-before-each-retry.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/failures/test-retries/fail-one-test-retry-with-after-each.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/failures/test-retries/fail-one-test-retry-with-after-each.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/failures/test-retries/fail-one-test-retry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/failures/test-retries/fail-one-test-retry.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/all-hook.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/all-hook.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after--nested-suite/before-after--nested-suite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after--nested-suite/before-after--nested-suite.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-after-fail-simple-04.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-after-fail-simple-04.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-after-pass-06.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-after-pass-06.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-before-fail-01.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-before-fail-01.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-before-fail-simple-03.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-before-fail-simple-03.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-before-pass-02.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-before-pass-02.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-pass-07.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-pass-07.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-with-global-hook-05.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after--nested-suite/data-nested-suite-with-global-hook-05.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each--nested-suite/before-after-each--nested-suite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each--nested-suite/before-after-each--nested-suite.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each--nested-suite/data-after-each-fail-nested-suite-several.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each--nested-suite/data-after-each-fail-nested-suite-several.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each--nested-suite/data-after-each-fail-nested-suite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each--nested-suite/data-after-each-fail-nested-suite.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each--nested-suite/data-before-each-fail-nested-suite-several.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each--nested-suite/data-before-each-fail-nested-suite-several.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each--nested-suite/data-before-each-fail-nested-suite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each--nested-suite/data-before-each-fail-nested-suite.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each--retry/before-after-each-retry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each--retry/before-after-each-retry.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each--retry/data-before-each-retry-fail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each--retry/data-before-each-retry-fail.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each--retry/data-before-each-retry-pass-after-fail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each--retry/data-before-each-retry-pass-after-fail.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/before-after-each.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/before-after-each.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/data-after-each-fail-several-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/data-after-each-fail-several-tests.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/data-after-each-fail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/data-after-each-fail.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/data-after-each-named-pass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/data-after-each-named-pass.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/data-after-each-pass-two-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/data-after-each-pass-two-tests.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/data-after-each-pass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/data-after-each-pass.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/data-after-each-skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/data-after-each-skip.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/data-before-each-fail-several-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/data-before-each-fail-several-tests.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/data-before-each-fail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/data-before-each-fail.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/data-before-each-named-pass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/data-before-each-named-pass.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/data-before-each-pass-two-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/data-before-each-pass-two-tests.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/data-before-each-pass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/data-before-each-pass.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after-each/data-before-each-skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after-each/data-before-each-skip.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after/before-after.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after/before-after.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/before-after/data-before-and-after-failure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/before-after/data-before-and-after-failure.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/regression-steps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/regression-steps.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/hooks/synthetic-tests-creation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/hooks/synthetic-tests-creation.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/attachment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/attachment.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/delete-res.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/delete-res.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/description-html.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/description-html.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/full-name.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/full-name.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/history-id.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/history-id.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/label-sync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/label-sync.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/label.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/label.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/links.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/links.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/meta-info-tags.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/meta-info-tags.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/no-allure.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/no-allure.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/parameter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/parameter.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/step.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/step.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/test-status-and-details.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/test-status-and-details.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/write-categories-file.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/write-categories-file.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/write-categories.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/write-categories.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/interface/write-info.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/interface/write-info.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/only/only-describe.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/only/only-describe.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/other/debug-log.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/other/debug-log.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/other/process-tags/data-process-tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/other/process-tags/data-process-tags.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/other/process-tags/process-tags.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/other/process-tags/process-tags.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/passes/DELETE_one-test-after-each.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/passes/DELETE_one-test-after-each.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/passes/DELETE_one-test-before-each.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/passes/DELETE_one-test-before-each.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/passes/DELETE_two-tests-after-each.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/passes/DELETE_two-tests-after-each.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/passes/DELETE_two-tests-before-each.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/passes/DELETE_two-tests-before-each.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/passes/one-test-after-all-global.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/passes/one-test-after-all-global.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/passes/one-test-before-all-global.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/passes/one-test-before-all-global.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/passes/one-test-before-each-global.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/passes/one-test-before-each-global.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/passes/one-test-before-each-retry-pass.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/passes/one-test-before-each-retry-pass.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/passes/one-test-retry-pass.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/passes/one-test-retry-pass.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/passes/one-test.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/passes/one-test.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/passes/two-tests.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/passes/two-tests.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/regression/root-suite-regression-no-watch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/regression/root-suite-regression-no-watch.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/regression/root-suite-regression-watch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/regression/root-suite-regression-watch.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/regression/steps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/regression/steps.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/requests/requests-from-app/data-request-handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/requests/requests-from-app/data-request-handlers.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/requests/requests-from-app/data-request-xhr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/requests/requests-from-app/data-request-xhr.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/requests/requests-from-app/request-handler-add-bodies-interception.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/requests/requests-from-app/request-handler-add-bodies-interception.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/requests/requests-from-app/request-handler-add-bodies-specific-requests.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/requests/requests-from-app/request-handler-add-bodies-specific-requests.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/requests/requests-from-app/request-handler-add-bodies.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/requests/requests-from-app/request-handler-add-bodies.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/requests/requests-from-app/requests-from-app.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/requests/requests-from-app/requests-from-app.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/requests/requests-redirects.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/requests/requests-redirects.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/requests/requests.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/requests/requests.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/settings/log-commands-skip-steps-asterisk.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/settings/log-commands-skip-steps-asterisk.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/settings/log-commands-skip-steps-other.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/settings/log-commands-skip-steps-other.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/settings/log-commands-skip-steps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/settings/log-commands-skip-steps.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/settings/log-commands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/settings/log-commands.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/settings/no-video.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/settings/no-video.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/skips/DELETE_one-test-skip-before-after-each.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/skips/DELETE_one-test-skip-before-after-each.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/skips/one-test-skip-inside-before-after-each.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/skips/one-test-skip-inside-before-after-each.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/skips/one-test-skip-inside.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/skips/one-test-skip-inside.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/skips/one-test-skip.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/skips/one-test-skip.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/skips/several-tests-skip.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/skips/several-tests-skip.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/skips/skip-describe-by-skip.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/skips/skip-describe-by-skip.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/skips/skip-describe.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/skips/skip-describe.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/assertions/assertions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/assertions/assertions.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/assertions/data-assertions-one-failed-for-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/assertions/data-assertions-one-failed-for-command.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/assertions/data-assertions-one-passed-for-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/assertions/data-assertions-one-passed-for-command.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/assertions/data-assertions-parent-step-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/assertions/data-assertions-parent-step-status.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/assertions/data-assertions-several-failed-for-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/assertions/data-assertions-several-failed-for-command.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/assertions/data-assertions-several-passed-for-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/assertions/data-assertions-several-passed-for-command.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/assertions/data-assertions-sync-assertion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/assertions/data-assertions-sync-assertion.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/assertions/visit-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/assertions/visit-html.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/group-logs/data-group-log-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/group-logs/data-group-log-session.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/group-logs/data-group-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/group-logs/data-group-log.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/group-logs/group-logs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/group-logs/group-logs.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/origin/data-origin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/origin/data-origin.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/origin/origin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/origin/origin.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/origin/visit-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/origin/visit-html.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/uncaught-exception/data-uncaught-exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/uncaught-exception/data-uncaught-exception.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/uncaught-exception/uncaught-exception.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/uncaught-exception/uncaught-exception.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/within/data-ignore-within.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/within/data-ignore-within.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/within/data-within.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/within/data-within.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/steps/within/within.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/steps/within/within.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/suites/suite-overrides-delete-labels.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/suites/suite-overrides-delete-labels.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/suites/suite-overrides-parent-suite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/suites/suite-overrides-parent-suite.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/suites/suite-overrides-sub-suite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/suites/suite-overrides-sub-suite.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/suites/suite-overrides-suite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/suites/suite-overrides-suite.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/suites/suites-nested-with-global-hooks-parent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/suites/suites-nested-with-global-hooks-parent.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/suites/suites-nested-with-hooks-parent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/suites/suites-nested-with-hooks-parent.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/v2/attachments/video/video-when-fail/cypress/test.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/v2/attachments/video/video-when-fail/cypress/test.cy.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/v2/attachments/video/video-when-fail/cypress/test2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/v2/attachments/video/video-when-fail/cypress/test2.cy.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/v2/attachments/video/video-when-fail/video-when-fail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/v2/attachments/video/video-when-fail/video-when-fail.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/v2/attachments/video/video-when-pass/cypress/test.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/v2/attachments/video/video-when-pass/cypress/test.cy.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/v2/attachments/video/video-when-pass/cypress/test2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/v2/attachments/video/video-when-pass/cypress/test2.cy.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/v2/attachments/video/video-when-pass/video-when-pass.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/v2/attachments/video/video-when-pass/video-when-pass.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/v2/suites/before-after--nested-suite/nested-suite-before-fail/cypress/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/v2/suites/before-after--nested-suite/nested-suite-before-fail/cypress/spec.cy.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/v2/suites/before-after--nested-suite/nested-suite-before-fail/nested-suite-before-fail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/v2/suites/before-after--nested-suite/nested-suite-before-fail/nested-suite-before-fail.test.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/v2/suites/before-after--nested-suite/nested-suite-with-global-hook/cypress/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/v2/suites/before-after--nested-suite/nested-suite-with-global-hook/cypress/spec.cy.ts -------------------------------------------------------------------------------- /tests/test-folder/mocha-events/v2/suites/before-after--nested-suite/nested-suite-with-global-hook/nested-suite-with-global-hook.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/test-folder/mocha-events/v2/suites/before-after--nested-suite/nested-suite-with-global-hook/nested-suite-with-global-hook.test.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmisty/cypress-allure-adapter/HEAD/tsconfig.json --------------------------------------------------------------------------------