├── .github └── workflows │ ├── build.yml │ └── check.yml ├── .gitignore ├── .readthedocs.yaml ├── .typos.toml ├── Dockerfile ├── README.md ├── _theme ├── css │ ├── admonition.css │ ├── behat-docs.css │ ├── button.css │ ├── code-samples.css │ ├── colours-brand.css │ ├── colours-dark.css │ ├── colours-light.css │ ├── font.css │ ├── page-colour-scheme.css │ └── wagtail-fixes │ │ ├── admonition-spacing.css │ │ ├── dark-theme-overrides.css │ │ ├── sticky-footer.css │ │ ├── table-spacing.css │ │ └── top-whitespace.css ├── python │ ├── button.py │ └── lightningcss.py ├── static │ ├── favicon.png │ └── img │ │ └── behat-b-2x-white.png └── templates │ ├── globaltoc.html │ ├── layout.html │ ├── pager.html │ └── searchbox.html ├── borg.json ├── community.rst ├── conf.py ├── cookbooks.rst ├── cookbooks ├── accessing_contexts_from_each_other.rst ├── creating_a_context_configuration_extension.rst └── custom_formatter.rst ├── docker-compose.yml ├── docker └── entrypoint.sh ├── guides.rst ├── images ├── formatter-pretty.png └── formatter-progress.png ├── index.rst ├── quick_start.rst ├── releases.rst ├── requirements.txt ├── useful_resources.rst └── user_guide ├── annotations.rst ├── command_line_tool.rst ├── command_line_tool ├── formatting.rst ├── identifying.rst └── informative_output.rst ├── configuration.rst ├── configuration ├── printing_paths.rst ├── suites.rst └── yaml_configuration.rst ├── context.rst ├── context ├── definitions.rst ├── hooks.rst └── transformations.rst ├── features_scenarios.rst ├── gherkin.rst ├── initialize.rst ├── integrations.rst ├── organizing.rst └── writing_scenarios.rst /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/.typos.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/README.md -------------------------------------------------------------------------------- /_theme/css/admonition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/admonition.css -------------------------------------------------------------------------------- /_theme/css/behat-docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/behat-docs.css -------------------------------------------------------------------------------- /_theme/css/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/button.css -------------------------------------------------------------------------------- /_theme/css/code-samples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/code-samples.css -------------------------------------------------------------------------------- /_theme/css/colours-brand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/colours-brand.css -------------------------------------------------------------------------------- /_theme/css/colours-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/colours-dark.css -------------------------------------------------------------------------------- /_theme/css/colours-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/colours-light.css -------------------------------------------------------------------------------- /_theme/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/font.css -------------------------------------------------------------------------------- /_theme/css/page-colour-scheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/page-colour-scheme.css -------------------------------------------------------------------------------- /_theme/css/wagtail-fixes/admonition-spacing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/wagtail-fixes/admonition-spacing.css -------------------------------------------------------------------------------- /_theme/css/wagtail-fixes/dark-theme-overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/wagtail-fixes/dark-theme-overrides.css -------------------------------------------------------------------------------- /_theme/css/wagtail-fixes/sticky-footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/wagtail-fixes/sticky-footer.css -------------------------------------------------------------------------------- /_theme/css/wagtail-fixes/table-spacing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/wagtail-fixes/table-spacing.css -------------------------------------------------------------------------------- /_theme/css/wagtail-fixes/top-whitespace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/css/wagtail-fixes/top-whitespace.css -------------------------------------------------------------------------------- /_theme/python/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/python/button.py -------------------------------------------------------------------------------- /_theme/python/lightningcss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/python/lightningcss.py -------------------------------------------------------------------------------- /_theme/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/static/favicon.png -------------------------------------------------------------------------------- /_theme/static/img/behat-b-2x-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/static/img/behat-b-2x-white.png -------------------------------------------------------------------------------- /_theme/templates/globaltoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/templates/globaltoc.html -------------------------------------------------------------------------------- /_theme/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/templates/layout.html -------------------------------------------------------------------------------- /_theme/templates/pager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/templates/pager.html -------------------------------------------------------------------------------- /_theme/templates/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/_theme/templates/searchbox.html -------------------------------------------------------------------------------- /borg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/borg.json -------------------------------------------------------------------------------- /community.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/community.rst -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/conf.py -------------------------------------------------------------------------------- /cookbooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/cookbooks.rst -------------------------------------------------------------------------------- /cookbooks/accessing_contexts_from_each_other.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/cookbooks/accessing_contexts_from_each_other.rst -------------------------------------------------------------------------------- /cookbooks/creating_a_context_configuration_extension.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/cookbooks/creating_a_context_configuration_extension.rst -------------------------------------------------------------------------------- /cookbooks/custom_formatter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/cookbooks/custom_formatter.rst -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /guides.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/guides.rst -------------------------------------------------------------------------------- /images/formatter-pretty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/images/formatter-pretty.png -------------------------------------------------------------------------------- /images/formatter-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/images/formatter-progress.png -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/index.rst -------------------------------------------------------------------------------- /quick_start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/quick_start.rst -------------------------------------------------------------------------------- /releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/releases.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/requirements.txt -------------------------------------------------------------------------------- /useful_resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/useful_resources.rst -------------------------------------------------------------------------------- /user_guide/annotations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/annotations.rst -------------------------------------------------------------------------------- /user_guide/command_line_tool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/command_line_tool.rst -------------------------------------------------------------------------------- /user_guide/command_line_tool/formatting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/command_line_tool/formatting.rst -------------------------------------------------------------------------------- /user_guide/command_line_tool/identifying.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/command_line_tool/identifying.rst -------------------------------------------------------------------------------- /user_guide/command_line_tool/informative_output.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/command_line_tool/informative_output.rst -------------------------------------------------------------------------------- /user_guide/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/configuration.rst -------------------------------------------------------------------------------- /user_guide/configuration/printing_paths.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/configuration/printing_paths.rst -------------------------------------------------------------------------------- /user_guide/configuration/suites.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/configuration/suites.rst -------------------------------------------------------------------------------- /user_guide/configuration/yaml_configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/configuration/yaml_configuration.rst -------------------------------------------------------------------------------- /user_guide/context.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/context.rst -------------------------------------------------------------------------------- /user_guide/context/definitions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/context/definitions.rst -------------------------------------------------------------------------------- /user_guide/context/hooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/context/hooks.rst -------------------------------------------------------------------------------- /user_guide/context/transformations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/context/transformations.rst -------------------------------------------------------------------------------- /user_guide/features_scenarios.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/features_scenarios.rst -------------------------------------------------------------------------------- /user_guide/gherkin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/gherkin.rst -------------------------------------------------------------------------------- /user_guide/initialize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/initialize.rst -------------------------------------------------------------------------------- /user_guide/integrations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/integrations.rst -------------------------------------------------------------------------------- /user_guide/organizing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/organizing.rst -------------------------------------------------------------------------------- /user_guide/writing_scenarios.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behat/docs/HEAD/user_guide/writing_scenarios.rst --------------------------------------------------------------------------------