From 12603287d11fcf4268b1f7ffd14e87fd7f4ac809 Mon Sep 17 00:00:00 2001 From: Matt Quinn Date: Fri, 30 May 2025 15:38:42 +0900 Subject: [PATCH] Replace rspec with sus in Getting Started guide --- guides/getting-started/readme.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/guides/getting-started/readme.md b/guides/getting-started/readme.md index 8492e02..652eab7 100644 --- a/guides/getting-started/readme.md +++ b/guides/getting-started/readme.md @@ -57,17 +57,14 @@ errors: ## Testing -Utopia websites include a default set of tests using `rspec`. These specs can test against the actual running website. +Utopia websites include a default set of tests using `sus`. These specs can test against the actual running website. ~~~ bash -$ rspec +$ sus -website -1 samples: 1x 200. 1170.96 requests per second. S/D: 0.000µs. - should be responsive - -Finished in 0.61764 seconds (files took 0.64705 seconds to load) -1 example, 0 failures +1 samples: 1x 200. 3703.7 requests per second. S/D: 0.000µs. +1 passed out of 1 total (2 assertions) +🏁 Finished in 247.4ms; 8.085 assertions per second. ~~~ The website test will spider all pages on your site and report any broken links as failures.