fix(docs): refresh documentation and test timing tolerances for updated APIs

This commit is contained in:
2026-05-09 12:36:02 +00:00
parent 6d6a08b168
commit 6c8485c779
11 changed files with 2093 additions and 3106 deletions
+6 -6
View File
@@ -2,6 +2,10 @@
> 🔧 Server-side testing utilities for Node.js runtime tests
## Issue Reporting and Security
For reporting bugs, issues, or security vulnerabilities, please visit [community.foss.global/](https://community.foss.global/). This is the central community hub for all issue reporting. Developers who sign and comply with our contribution agreement and go through identification can also get a [code.foss.global/](https://code.foss.global/) account to submit Pull Requests directly.
## Installation
```bash
@@ -9,10 +13,6 @@
pnpm install --save-dev @git.zone/tstest
```
## Issue Reporting and Security
For reporting bugs, issues, or security vulnerabilities, please visit [community.foss.global/](https://community.foss.global/). This is the central community hub for all issue reporting. Developers who sign and comply with our contribution agreement and go through identification can also get a [code.foss.global/](https://code.foss.global/) account to submit Pull Requests directly.
## Overview
`@git.zone/tstest/tapbundle_serverside` provides server-side testing utilities exclusively for Node.js runtime. These tools make it trivial to spin up test infrastructure — free ports, HTTPS certificates, ephemeral databases, S3 storage, shell commands, and environment variable management.
@@ -209,7 +209,7 @@ Uses [@push.rocks/smartmongo](https://code.foss.global/push.rocks/smartmongo).
### 📦 Storage Testing
#### `createSmarts3()`
#### `createSmartStorage()`
Create a local S3-compatible storage instance for testing.
@@ -219,7 +219,7 @@ const s3 = await tapNodeTools.createSmartStorage();
await s3.stop();
```
Default config: port 3003, clean slate enabled. Uses [@push.rocks/smartstorage](https://code.foss.global/push.rocks/smartstorage).
Default config: first free port starting at 3003, clean slate enabled. Uses [@push.rocks/smartstorage](https://code.foss.global/push.rocks/smartstorage).
---