import { ... } from "@langchain/sandbox-standard-tests";A describe / suite function accepted by the standard tests.
Run the standard sandbox integration tests against a provider.
A single shared sandbox is created in beforeAll and reused for the
majority of tests (command execution, file operations). Tests that
inherently need their own sandbox (lifecycle close/init, initialFiles)
create a temporary one and destroy it immediately, so the concurrent
sandbox count never exceeds 2 (shared + 1 temporary).
Retry an async operation with a fixed delay between attempts.
Useful for working around transient sandbox concurrency limits: when a provider rejects creation because the organisation has too many running sandboxes, waiting a short while and retrying usually succeeds once a previous sandbox finishes shutting down.