From e14c9d2ae0fe907910bb2e42e214289691da6d45 Mon Sep 17 00:00:00 2001 From: Mia Date: Sun, 14 Jul 2024 13:17:28 +0200 Subject: [PATCH] chore: Update README.md with additional information about using JS for data routing and calling custom Go extensions --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d4baa9..ddc091e 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,9 @@ Highly adoptable test Framework for large and complex projects, that need a dependency-conscious, secure and fast testing solution. -TestDreadnought is built for you to mold precisely to your project's demands, avoiding the one-size-fits-all approach. It sidesteps dependency issues and the security risks of excessive third-party packages, particularly from JS npm. With no forced structure or excessive rules, you get a clean, efficient, and secure testing environment that’s exactly suited to tackle your unique challenges. +TestDreadnought is built for you to mold precisely to your project's demands, avoiding the one-size-fits-all approach. It sidesteps dependency issues and the security risks of excessive third-party packages, particularly from JS npm. With no forced structure for tests or excessive rules, you get a clean, efficient, and secure testing environment that’s exactly suited to tackle your unique challenges. + +Js is used for data routing, basic logic, and calling custom Go extensions for complex actions such as HTTP requests. This approach enables the creation of complex and precise tests that remain easy to write and understand, all without relying on third-party npm packages. Checkout the `test_example` folder for a example test setup.