Functions

f
run(
file: string,
options?: ScriptOptions
): Task<ScriptResult, ScriptFailure>

Runs ONE file as a plain script in a real browser — the API twin of qunitx run <file>, and the sibling of test, which runs a suite.

Interfaces

I
ScriptOptions

Everything run accepts beyond the file itself — the subset of a script run a caller can set.

I
ScriptResult

What one script run produced.

Type Aliases

T
ScriptFailure =
Failure.Of<NotAScriptFile | RunCommand.ScriptBuildFailed>
| ScriptEntryFailure

Every way run can reject. A script that merely exits non-zero is NOT one of them.

Variables