├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── auto-publish-on-release.yml │ ├── main.yml │ └── publish-api.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc.js ├── README.md ├── action.yml ├── bin └── check.js ├── changelog.md ├── cli.md ├── dist ├── index.js └── typescript │ └── lib │ ├── cancellationToken.js │ ├── cs │ └── diagnosticMessages.generated.json │ ├── de │ └── diagnosticMessages.generated.json │ ├── es │ └── diagnosticMessages.generated.json │ ├── fr │ └── diagnosticMessages.generated.json │ ├── it │ └── diagnosticMessages.generated.json │ ├── ja │ └── diagnosticMessages.generated.json │ ├── ko │ └── diagnosticMessages.generated.json │ ├── lib.d.ts │ ├── lib.dom.d.ts │ ├── lib.dom.iterable.d.ts │ ├── lib.es2015.collection.d.ts │ ├── lib.es2015.core.d.ts │ ├── lib.es2015.d.ts │ ├── lib.es2015.generator.d.ts │ ├── lib.es2015.iterable.d.ts │ ├── lib.es2015.promise.d.ts │ ├── lib.es2015.proxy.d.ts │ ├── lib.es2015.reflect.d.ts │ ├── lib.es2015.symbol.d.ts │ ├── lib.es2015.symbol.wellknown.d.ts │ ├── lib.es2016.array.include.d.ts │ ├── lib.es2016.d.ts │ ├── lib.es2016.full.d.ts │ ├── lib.es2017.d.ts │ ├── lib.es2017.full.d.ts │ ├── lib.es2017.intl.d.ts │ ├── lib.es2017.object.d.ts │ ├── lib.es2017.sharedmemory.d.ts │ ├── lib.es2017.string.d.ts │ ├── lib.es2017.typedarrays.d.ts │ ├── lib.es2018.asyncgenerator.d.ts │ ├── lib.es2018.asynciterable.d.ts │ ├── lib.es2018.d.ts │ ├── lib.es2018.full.d.ts │ ├── lib.es2018.intl.d.ts │ ├── lib.es2018.promise.d.ts │ ├── lib.es2018.regexp.d.ts │ ├── lib.es2019.array.d.ts │ ├── lib.es2019.d.ts │ ├── lib.es2019.full.d.ts │ ├── lib.es2019.object.d.ts │ ├── lib.es2019.string.d.ts │ ├── lib.es2019.symbol.d.ts │ ├── lib.es2020.bigint.d.ts │ ├── lib.es2020.d.ts │ ├── lib.es2020.full.d.ts │ ├── lib.es2020.intl.d.ts │ ├── lib.es2020.promise.d.ts │ ├── lib.es2020.sharedmemory.d.ts │ ├── lib.es2020.string.d.ts │ ├── lib.es2020.symbol.wellknown.d.ts │ ├── lib.es2021.d.ts │ ├── lib.es2021.full.d.ts │ ├── lib.es2021.promise.d.ts │ ├── lib.es2021.string.d.ts │ ├── lib.es2021.weakref.d.ts │ ├── lib.es5.d.ts │ ├── lib.es6.d.ts │ ├── lib.esnext.d.ts │ ├── lib.esnext.full.d.ts │ ├── lib.esnext.intl.d.ts │ ├── lib.esnext.promise.d.ts │ ├── lib.esnext.string.d.ts │ ├── lib.esnext.weakref.d.ts │ ├── lib.scripthost.d.ts │ ├── lib.webworker.d.ts │ ├── lib.webworker.importscripts.d.ts │ ├── lib.webworker.iterable.d.ts │ ├── pl │ └── diagnosticMessages.generated.json │ ├── protocol.d.ts │ ├── pt-br │ └── diagnosticMessages.generated.json │ ├── ru │ └── diagnosticMessages.generated.json │ ├── tr │ └── diagnosticMessages.generated.json │ ├── tsc.js │ ├── tsserver.js │ ├── tsserverlibrary.d.ts │ ├── tsserverlibrary.js │ ├── typesMap.json │ ├── typescript.d.ts │ ├── typescript.js │ ├── typescriptServices.d.ts │ ├── typescriptServices.js │ ├── typingsInstaller.js │ ├── watchGuard.js │ ├── zh-cn │ └── diagnosticMessages.generated.json │ └── zh-tw │ └── diagnosticMessages.generated.json ├── docs └── frameworks │ ├── gauge.md │ └── nightwatch.md ├── example ├── checkout.test.md ├── codeceptjs │ ├── create_todos_test.js │ ├── data_table_tags_test.js │ ├── datatable_test.js │ ├── edit_todos_test.js │ ├── tags_test.js │ └── test_hooks_description.js ├── dummy │ ├── file_test.js │ ├── node_modules │ │ └── dont_touch_me_test.js │ ├── string_spec.js │ └── user.js │ │ └── just_content.js ├── gauge │ ├── HTMLElementsAPI.spec │ ├── IFrameElementsAPI.spec │ ├── alert.spec │ ├── browserActions.spec │ ├── data │ │ ├── HTMLElements.html │ │ └── IFrameElements.html │ ├── example.spec │ ├── intercept.spec │ ├── pageActions.spec │ ├── proximitySelectors.spec │ ├── rightClick.html │ ├── selectors.spec │ └── waitForNavigation.spec ├── jasmine │ └── protractor.spec.js ├── jest │ ├── erm.spec.ts │ ├── hooks.spec.js │ ├── jest-concurrent.js │ ├── vue.spec.js │ └── vue.spec.only.js ├── mocha │ ├── cypress_hooks.spec.js │ ├── cypress_spec.js │ ├── graphql_test.js │ ├── index_test.js │ └── puppeteer.spec.js ├── newman │ └── collection.json ├── nightwatch │ ├── basic.js │ ├── classic-esm.mjs │ ├── classic.js │ ├── complex-hooks.js │ ├── duckDuckGo.test.ts │ ├── ecosia.test.ts │ ├── mixed.js │ └── page-objects.js ├── playwright │ ├── annotating_test.ts │ ├── annotations.js │ ├── annotations.ts │ ├── basic.js │ ├── basic.ts │ ├── custom-fixture-name.ts │ ├── demo-todo.ts │ ├── fixme.js │ ├── hooks.js │ ├── multiple.js │ ├── multiple.ts │ ├── params.ts │ ├── skip.js │ ├── tags-in-title.js │ └── tags.ts ├── protractor │ └── login.spec.ts ├── qunit │ └── ember_test.js ├── test-specification.md └── testcafe │ └── index_test.js ├── index.js ├── package.json ├── src ├── analyzer.js ├── comment.js ├── decorator.js ├── document.js ├── errors │ ├── comment.error.js │ └── validation.error.js ├── index.js ├── lib │ ├── frameworks │ │ ├── codeceptjs.js │ │ ├── gauge.js │ │ ├── jasmine.js │ │ ├── jest.js │ │ ├── markdown.js │ │ ├── mocha.js │ │ ├── newman.js │ │ ├── nightwatch.js │ │ ├── playwright.js │ │ ├── qunit.js │ │ └── testcafe.js │ └── utils.js ├── pull.js ├── pullRequest.js ├── reporter.js └── updateIds │ ├── constants.js │ ├── helpers.js │ ├── index.js │ ├── updateIds-gauge.js │ ├── updateIds-markdown.js │ ├── updateIds-newman.js │ └── updateIds.js ├── testomat-api-definition.yml ├── tests.json ├── tests ├── analyzer_test.js ├── codeceptjs_test.js ├── comment_test.js ├── decorator_test.js ├── gauge_test.js ├── jasmine_test.js ├── jest_test.js ├── manual_test.js ├── mocha_test.js ├── newman_test.js ├── nightwatch_test.js ├── playwright_test.js ├── pull_test.js ├── push_command_test.js ├── qunit_test.js ├── reporter_test.js ├── testcafe_test.js ├── updateIds_codeceptjs_test.js ├── updateIds_gauge_test.js ├── updateIds_markdown_test.js ├── updateIds_nightwatch_test.js ├── updateIds_playwright_test.js ├── updateIds_test.js ├── update_fs_test.js └── utils_test.js └── types.d.ts /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-publish-on-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/.github/workflows/auto-publish-on-release.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/.github/workflows/publish-api.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/action.yml -------------------------------------------------------------------------------- /bin/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/bin/check.js -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/changelog.md -------------------------------------------------------------------------------- /cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/cli.md -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/typescript/lib/cancellationToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/cancellationToken.js -------------------------------------------------------------------------------- /dist/typescript/lib/cs/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/cs/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /dist/typescript/lib/de/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/de/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /dist/typescript/lib/es/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/es/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /dist/typescript/lib/fr/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/fr/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /dist/typescript/lib/it/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/it/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /dist/typescript/lib/ja/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/ja/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /dist/typescript/lib/ko/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/ko/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /dist/typescript/lib/lib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.dom.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.dom.iterable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.dom.iterable.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2015.collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2015.collection.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2015.core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2015.core.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2015.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2015.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2015.generator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2015.generator.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2015.iterable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2015.iterable.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2015.promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2015.promise.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2015.proxy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2015.proxy.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2015.reflect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2015.reflect.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2015.symbol.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2015.symbol.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2015.symbol.wellknown.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2015.symbol.wellknown.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2016.array.include.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2016.array.include.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2016.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2016.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2016.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2016.full.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2017.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2017.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2017.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2017.full.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2017.intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2017.intl.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2017.object.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2017.object.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2017.sharedmemory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2017.sharedmemory.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2017.string.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2017.string.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2017.typedarrays.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2017.typedarrays.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2018.asyncgenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2018.asyncgenerator.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2018.asynciterable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2018.asynciterable.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2018.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2018.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2018.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2018.full.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2018.intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2018.intl.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2018.promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2018.promise.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2018.regexp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2018.regexp.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2019.array.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2019.array.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2019.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2019.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2019.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2019.full.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2019.object.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2019.object.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2019.string.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2019.string.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2019.symbol.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2019.symbol.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2020.bigint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2020.bigint.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2020.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2020.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2020.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2020.full.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2020.intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2020.intl.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2020.promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2020.promise.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2020.sharedmemory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2020.sharedmemory.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2020.string.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2020.string.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2020.symbol.wellknown.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2020.symbol.wellknown.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2021.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2021.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2021.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2021.full.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2021.promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2021.promise.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2021.string.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2021.string.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es2021.weakref.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es2021.weakref.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es5.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.es6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.es6.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.esnext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.esnext.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.esnext.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.esnext.full.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.esnext.intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.esnext.intl.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.esnext.promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.esnext.promise.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.esnext.string.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.esnext.string.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.esnext.weakref.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.esnext.weakref.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.scripthost.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.scripthost.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.webworker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.webworker.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.webworker.importscripts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.webworker.importscripts.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/lib.webworker.iterable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/lib.webworker.iterable.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/pl/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/pl/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /dist/typescript/lib/protocol.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/protocol.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/pt-br/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/pt-br/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /dist/typescript/lib/ru/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/ru/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /dist/typescript/lib/tr/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/tr/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /dist/typescript/lib/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/tsc.js -------------------------------------------------------------------------------- /dist/typescript/lib/tsserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/tsserver.js -------------------------------------------------------------------------------- /dist/typescript/lib/tsserverlibrary.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/tsserverlibrary.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/tsserverlibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/tsserverlibrary.js -------------------------------------------------------------------------------- /dist/typescript/lib/typesMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/typesMap.json -------------------------------------------------------------------------------- /dist/typescript/lib/typescript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/typescript.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/typescript.js -------------------------------------------------------------------------------- /dist/typescript/lib/typescriptServices.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/typescriptServices.d.ts -------------------------------------------------------------------------------- /dist/typescript/lib/typescriptServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/typescriptServices.js -------------------------------------------------------------------------------- /dist/typescript/lib/typingsInstaller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/typingsInstaller.js -------------------------------------------------------------------------------- /dist/typescript/lib/watchGuard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/watchGuard.js -------------------------------------------------------------------------------- /dist/typescript/lib/zh-cn/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/zh-cn/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /dist/typescript/lib/zh-tw/diagnosticMessages.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/dist/typescript/lib/zh-tw/diagnosticMessages.generated.json -------------------------------------------------------------------------------- /docs/frameworks/gauge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/docs/frameworks/gauge.md -------------------------------------------------------------------------------- /docs/frameworks/nightwatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/docs/frameworks/nightwatch.md -------------------------------------------------------------------------------- /example/checkout.test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/checkout.test.md -------------------------------------------------------------------------------- /example/codeceptjs/create_todos_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/codeceptjs/create_todos_test.js -------------------------------------------------------------------------------- /example/codeceptjs/data_table_tags_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/codeceptjs/data_table_tags_test.js -------------------------------------------------------------------------------- /example/codeceptjs/datatable_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/codeceptjs/datatable_test.js -------------------------------------------------------------------------------- /example/codeceptjs/edit_todos_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/codeceptjs/edit_todos_test.js -------------------------------------------------------------------------------- /example/codeceptjs/tags_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/codeceptjs/tags_test.js -------------------------------------------------------------------------------- /example/codeceptjs/test_hooks_description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/codeceptjs/test_hooks_description.js -------------------------------------------------------------------------------- /example/dummy/file_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/dummy/file_test.js -------------------------------------------------------------------------------- /example/dummy/node_modules/dont_touch_me_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/dummy/node_modules/dont_touch_me_test.js -------------------------------------------------------------------------------- /example/dummy/string_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/dummy/string_spec.js -------------------------------------------------------------------------------- /example/dummy/user.js/just_content.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/gauge/HTMLElementsAPI.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/HTMLElementsAPI.spec -------------------------------------------------------------------------------- /example/gauge/IFrameElementsAPI.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/IFrameElementsAPI.spec -------------------------------------------------------------------------------- /example/gauge/alert.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/alert.spec -------------------------------------------------------------------------------- /example/gauge/browserActions.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/browserActions.spec -------------------------------------------------------------------------------- /example/gauge/data/HTMLElements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/data/HTMLElements.html -------------------------------------------------------------------------------- /example/gauge/data/IFrameElements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/data/IFrameElements.html -------------------------------------------------------------------------------- /example/gauge/example.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/example.spec -------------------------------------------------------------------------------- /example/gauge/intercept.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/intercept.spec -------------------------------------------------------------------------------- /example/gauge/pageActions.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/pageActions.spec -------------------------------------------------------------------------------- /example/gauge/proximitySelectors.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/proximitySelectors.spec -------------------------------------------------------------------------------- /example/gauge/rightClick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/rightClick.html -------------------------------------------------------------------------------- /example/gauge/selectors.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/selectors.spec -------------------------------------------------------------------------------- /example/gauge/waitForNavigation.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/gauge/waitForNavigation.spec -------------------------------------------------------------------------------- /example/jasmine/protractor.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/jasmine/protractor.spec.js -------------------------------------------------------------------------------- /example/jest/erm.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/jest/erm.spec.ts -------------------------------------------------------------------------------- /example/jest/hooks.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/jest/hooks.spec.js -------------------------------------------------------------------------------- /example/jest/jest-concurrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/jest/jest-concurrent.js -------------------------------------------------------------------------------- /example/jest/vue.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/jest/vue.spec.js -------------------------------------------------------------------------------- /example/jest/vue.spec.only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/jest/vue.spec.only.js -------------------------------------------------------------------------------- /example/mocha/cypress_hooks.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/mocha/cypress_hooks.spec.js -------------------------------------------------------------------------------- /example/mocha/cypress_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/mocha/cypress_spec.js -------------------------------------------------------------------------------- /example/mocha/graphql_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/mocha/graphql_test.js -------------------------------------------------------------------------------- /example/mocha/index_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/mocha/index_test.js -------------------------------------------------------------------------------- /example/mocha/puppeteer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/mocha/puppeteer.spec.js -------------------------------------------------------------------------------- /example/newman/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/newman/collection.json -------------------------------------------------------------------------------- /example/nightwatch/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/nightwatch/basic.js -------------------------------------------------------------------------------- /example/nightwatch/classic-esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/nightwatch/classic-esm.mjs -------------------------------------------------------------------------------- /example/nightwatch/classic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/nightwatch/classic.js -------------------------------------------------------------------------------- /example/nightwatch/complex-hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/nightwatch/complex-hooks.js -------------------------------------------------------------------------------- /example/nightwatch/duckDuckGo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/nightwatch/duckDuckGo.test.ts -------------------------------------------------------------------------------- /example/nightwatch/ecosia.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/nightwatch/ecosia.test.ts -------------------------------------------------------------------------------- /example/nightwatch/mixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/nightwatch/mixed.js -------------------------------------------------------------------------------- /example/nightwatch/page-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/nightwatch/page-objects.js -------------------------------------------------------------------------------- /example/playwright/annotating_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/annotating_test.ts -------------------------------------------------------------------------------- /example/playwright/annotations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/annotations.js -------------------------------------------------------------------------------- /example/playwright/annotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/annotations.ts -------------------------------------------------------------------------------- /example/playwright/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/basic.js -------------------------------------------------------------------------------- /example/playwright/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/basic.ts -------------------------------------------------------------------------------- /example/playwright/custom-fixture-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/custom-fixture-name.ts -------------------------------------------------------------------------------- /example/playwright/demo-todo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/demo-todo.ts -------------------------------------------------------------------------------- /example/playwright/fixme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/fixme.js -------------------------------------------------------------------------------- /example/playwright/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/hooks.js -------------------------------------------------------------------------------- /example/playwright/multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/multiple.js -------------------------------------------------------------------------------- /example/playwright/multiple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/multiple.ts -------------------------------------------------------------------------------- /example/playwright/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/params.ts -------------------------------------------------------------------------------- /example/playwright/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/skip.js -------------------------------------------------------------------------------- /example/playwright/tags-in-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/tags-in-title.js -------------------------------------------------------------------------------- /example/playwright/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/playwright/tags.ts -------------------------------------------------------------------------------- /example/protractor/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/protractor/login.spec.ts -------------------------------------------------------------------------------- /example/qunit/ember_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/qunit/ember_test.js -------------------------------------------------------------------------------- /example/test-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/test-specification.md -------------------------------------------------------------------------------- /example/testcafe/index_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/example/testcafe/index_test.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/package.json -------------------------------------------------------------------------------- /src/analyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/analyzer.js -------------------------------------------------------------------------------- /src/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/comment.js -------------------------------------------------------------------------------- /src/decorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/decorator.js -------------------------------------------------------------------------------- /src/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/document.js -------------------------------------------------------------------------------- /src/errors/comment.error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/errors/comment.error.js -------------------------------------------------------------------------------- /src/errors/validation.error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/errors/validation.error.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/frameworks/codeceptjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/lib/frameworks/codeceptjs.js -------------------------------------------------------------------------------- /src/lib/frameworks/gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/lib/frameworks/gauge.js -------------------------------------------------------------------------------- /src/lib/frameworks/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/lib/frameworks/jasmine.js -------------------------------------------------------------------------------- /src/lib/frameworks/jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/lib/frameworks/jest.js -------------------------------------------------------------------------------- /src/lib/frameworks/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/lib/frameworks/markdown.js -------------------------------------------------------------------------------- /src/lib/frameworks/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/lib/frameworks/mocha.js -------------------------------------------------------------------------------- /src/lib/frameworks/newman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/lib/frameworks/newman.js -------------------------------------------------------------------------------- /src/lib/frameworks/nightwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/lib/frameworks/nightwatch.js -------------------------------------------------------------------------------- /src/lib/frameworks/playwright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/lib/frameworks/playwright.js -------------------------------------------------------------------------------- /src/lib/frameworks/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/lib/frameworks/qunit.js -------------------------------------------------------------------------------- /src/lib/frameworks/testcafe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/lib/frameworks/testcafe.js -------------------------------------------------------------------------------- /src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/lib/utils.js -------------------------------------------------------------------------------- /src/pull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/pull.js -------------------------------------------------------------------------------- /src/pullRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/pullRequest.js -------------------------------------------------------------------------------- /src/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/reporter.js -------------------------------------------------------------------------------- /src/updateIds/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/updateIds/constants.js -------------------------------------------------------------------------------- /src/updateIds/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/updateIds/helpers.js -------------------------------------------------------------------------------- /src/updateIds/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/updateIds/index.js -------------------------------------------------------------------------------- /src/updateIds/updateIds-gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/updateIds/updateIds-gauge.js -------------------------------------------------------------------------------- /src/updateIds/updateIds-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/updateIds/updateIds-markdown.js -------------------------------------------------------------------------------- /src/updateIds/updateIds-newman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/updateIds/updateIds-newman.js -------------------------------------------------------------------------------- /src/updateIds/updateIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/src/updateIds/updateIds.js -------------------------------------------------------------------------------- /testomat-api-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/testomat-api-definition.yml -------------------------------------------------------------------------------- /tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests.json -------------------------------------------------------------------------------- /tests/analyzer_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/analyzer_test.js -------------------------------------------------------------------------------- /tests/codeceptjs_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/codeceptjs_test.js -------------------------------------------------------------------------------- /tests/comment_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/comment_test.js -------------------------------------------------------------------------------- /tests/decorator_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/decorator_test.js -------------------------------------------------------------------------------- /tests/gauge_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/gauge_test.js -------------------------------------------------------------------------------- /tests/jasmine_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/jasmine_test.js -------------------------------------------------------------------------------- /tests/jest_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/jest_test.js -------------------------------------------------------------------------------- /tests/manual_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/manual_test.js -------------------------------------------------------------------------------- /tests/mocha_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/mocha_test.js -------------------------------------------------------------------------------- /tests/newman_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/newman_test.js -------------------------------------------------------------------------------- /tests/nightwatch_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/nightwatch_test.js -------------------------------------------------------------------------------- /tests/playwright_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/playwright_test.js -------------------------------------------------------------------------------- /tests/pull_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/pull_test.js -------------------------------------------------------------------------------- /tests/push_command_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/push_command_test.js -------------------------------------------------------------------------------- /tests/qunit_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/qunit_test.js -------------------------------------------------------------------------------- /tests/reporter_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/reporter_test.js -------------------------------------------------------------------------------- /tests/testcafe_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/testcafe_test.js -------------------------------------------------------------------------------- /tests/updateIds_codeceptjs_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/updateIds_codeceptjs_test.js -------------------------------------------------------------------------------- /tests/updateIds_gauge_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/updateIds_gauge_test.js -------------------------------------------------------------------------------- /tests/updateIds_markdown_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/updateIds_markdown_test.js -------------------------------------------------------------------------------- /tests/updateIds_nightwatch_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/updateIds_nightwatch_test.js -------------------------------------------------------------------------------- /tests/updateIds_playwright_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/updateIds_playwright_test.js -------------------------------------------------------------------------------- /tests/updateIds_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/updateIds_test.js -------------------------------------------------------------------------------- /tests/update_fs_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/update_fs_test.js -------------------------------------------------------------------------------- /tests/utils_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/tests/utils_test.js -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testomatio/check-tests/HEAD/types.d.ts --------------------------------------------------------------------------------