From 343c909bd8c15525611510d8bffbed8bd26b0dbe Mon Sep 17 00:00:00 2001 From: Gareth Miller <6932794+gar-mil@users.noreply.github.com> Date: Mon, 8 Jan 2024 13:42:12 -0600 Subject: [PATCH] Update readme and info --- README.md | 8 +++++++- rustictest.js | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0e76fb4..8c32afb 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ # rustictest -A ridiculously lightweight, dependency-free, in-browser JavaScript testing suite. +A ridiculously lightweight, dependency-free, in-browser JavaScript testing "suite." + +I am a firm believer in unit testing and love robust testing suites like Jest, but sometimes I just don't need that much power and overhead. Rustictest is anything but robust; it features only three types of tests, has no CI/CD integration, and doesn't attempt to do anything fancy. It clocks in at 2KB minified, does not need npm or yarn, and runs tests as quickly as you can reload your browser window. I use it for rapid prototyping and for vanillajs projects, and sometimes run it side-by-side with Jest. + +Test results can be displayed as a simple dashboard, or silently in the console log. + +Future updates will be sporadic, and I am not intending to develop this into a full-fledged testing suite. ## Usage * Step 1.) Instantiate the RusticTest class (var tests = new RusticTest()). diff --git a/rustictest.js b/rustictest.js index b6c8d30..6fbc18f 100644 --- a/rustictest.js +++ b/rustictest.js @@ -3,7 +3,7 @@ * v1.0.0 * https://github.com/gar-mil/rustictest * - * A ridiculously lightweight, dependency-free, in-browser JavaScript testing suite. + * A ridiculously lightweight, dependency-free, in-browser JavaScript testing "suite." * * Usage: * Step 1.) Instantiate the RusticTest class (var tests = new RusticTest()).