Matheus Nogueira
Matheus Nogueira
# Context gnomock works great when you have to run a couple of independent containers to test your application, but as soon as you require communication between those containers, things...
This PR allows tracetest to store metadata about a test run. The CLI is now capturing CI data when a test is running, this will be used to make it...
This PR updates the `testDefinition` term and replaces it with `spec` instead. ## Checklist - [x] tested locally - [ ] added new dependencies - [x] updated the docs -...
Our otel converter was building the trace manually, but now we have a `traces.New` function that does exactly that. We should make our OTEL converter to start using that new...
This PR makes our OTEL converter use our new `traces.New` function instead of reimplementing it by hand. ## Checklist - [x] tested locally - [ ] added new dependencies -...
This PR improves the way our CLI outputs the test result after running a test. Example:  ## TODO - [ ] add link to test run...
I'm opening this issue to document what I think would be the best way of displaying the CLI outputs. I'm focusing on the `run test`: **Success case**: :heavy_check_mark: Test name...
**Is your feature request related to a problem? Please describe.** #1007 added support to expressions and span attribute referencing in the backend and CLI. We should support it on the...
This PR allows users to specify assertions using variables from the selected span and to use basic arithmetic expressions with it. Examples: ```yaml testDefinition: selector: span[name = "proxy"] assertions: -...
# Problem Today we only can execute assertions against static values. However, there are some use-cases for more complex assertions, such as asserting that an operation that is async runs...