From ebd91b6844d11a2d684040ac0ca8e8609962f50f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adnan=20Rahi=C4=87?= Date: Wed, 17 Apr 2024 16:09:35 +0200 Subject: [PATCH] docs(recipes): update why is this important for artillery recipe (#3804) --- ...performance-tests-with-artillery-and-tracetest.mdx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/docs/examples-tutorials/recipes/running-playwright-performance-tests-with-artillery-and-tracetest.mdx b/docs/docs/examples-tutorials/recipes/running-playwright-performance-tests-with-artillery-and-tracetest.mdx index 122a25cbc4..fc8e35ef76 100644 --- a/docs/docs/examples-tutorials/recipes/running-playwright-performance-tests-with-artillery-and-tracetest.mdx +++ b/docs/docs/examples-tutorials/recipes/running-playwright-performance-tests-with-artillery-and-tracetest.mdx @@ -31,7 +31,16 @@ This integration is compatible with [Artillery v2.0.10](https://github.com/artil ## Why is this important? -The Tracetest integration for Playwright enables your current Playwright tests to easily capture a full distributed trace from your OpenTelemetry instrumented frontend and backend system. You can embed a Tracetest in this Playwright test, and allow trace-based testing assertions to be applied across this entire flow, enabling true end-to-end tests across your entire system. Taking it a step further you can use the Playwright engine in Artillery to run performance tests on top if it. +The Tracetest integration for Playwright enables your current Playwright tests to easily capture a full distributed trace from your OpenTelemetry instrumented front-end and back-end system. + +You can embed a Tracetest test in this Playwright test, and allow trace-based testing assertions to be applied across this entire flow, enabling true end-to-end tests across your entire system. Taking it a step further you can use the Playwright engine in Artillery to run performance tests on top if it. + +Because you're using traces as test specs you can: + +- Get faster MTTR for failing performance tests +- Assert against the Artillery test execution, Playwright test execution, and the system under test +- Validate functionality of other parts of your system that may be broken, even when performance tests are passing + ## The `@tracetest/playwright` npm Package