Improved Templating & Isolated Test Environments
Enhanced templating support
Templating is now more flexible and intuitive.
Before:
- Firstly, ...
{% include "some-template.plain" %}
This required indentation to be managed inside the included file.
Now:
- Firstly, ...
- Secondly, {% include "some-template.plain.plain" %}
Templates can now be included inline or indented naturally within the document — indentation is handled automatically, making templates easier to compose and maintain.
Isolated Test Execution
Test scripts for major languages now execute in isolated environments, ensuring clean runs and consistent results.
Supported languages:
- Python
- Golang
- Node.js
This enhancement improves reproducibility and prevents side effects across tests.
Other improvements
- General improvements and bug fixes
- Enhanced observability and logging