- JavaScript 58.9%
- HTML 41.1%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| index.html | ||
| README.md | ||
| test.js | ||
coder-sandbox-smoke-test-5-mto2thad
KusumaOS-generated: Coder sandbox smoke test 5
What this is
A single static HTML file (index.html) that renders a "Hello!" message. It has no backend,
no build step, and no dependencies. It is not a product — it exists purely to exercise the
@coder agent's sandbox pipeline (repo checkout, file creation, commit, and PR flow) end to end,
per the approved feasibility spec for "Coder sandbox smoke test 5".
How to run it
Open index.html directly in any web browser (double-click it, or run a command like
open index.html / xdg-open index.html). No server or build step is required.
Optionally, serve it locally for a URL-based preview:
python3 -m http.server 8000
# then visit http://localhost:8000/
Tests
test.js is a small dependency-free Node.js script that checks:
index.htmlexists and is non-empty.- It contains a
<h1>(or similar) element with the word "Hello". - It is minimally well-formed HTML (has
<!DOCTYPE html>,<html>,<head>,<body>tags).
Run it with:
node test.js
Success criteria for this smoke test: the file exists, renders a hello message, and the checks
in test.js pass.