Files
amethyst/nestsClient/tests/browser-interop/src/publish.html
T
Claude bd7b166fda chore(nests): mv nestsClient-browser-interop/ → nestsClient/tests/browser-interop/
Mirrors the existing nestsClient/tests/hang-interop/ layout — all
T16 cross-stack interop test infrastructure (Rust sidecars + bun
browser harness) now lives under nestsClient/tests/.

Updates:
- nestsClient/build.gradle.kts: browserInteropDir path.
- PlaywrightDriver.kt + BrowserInteropTest.kt: kdoc comments.
- All plan docs in nestsClient/plans/ that referenced the old
  path.

Compiles clean post-move. No CI changes (those jobs are
intentionally not wired per 2026-05-07-cross-stack-interop-ci-gating.md;
when re-added they'll reference the new path).
2026-05-07 14:43:55 +00:00

19 lines
486 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>nests browser-interop publisher</title>
<style>
body { font: 14px monospace; padding: 8px; }
body[data-state="error"] { background: #fdd; }
body[data-state="done"] { background: #dfd; }
body[data-state="publishing"] { background: #ffe; }
</style>
</head>
<body data-state="init">
<h1>nests-browser-interop / publish</h1>
<div id="status">init</div>
<script type="module" src="./publish.js"></script>
</body>
</html>