Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
radicle-explorer tests build smoke.spec.ts
import { test, expect } from "@tests/support/fixtures.js";

test("exceptions in production build", async ({ page }) => {
  await page.goto("/nodes/127.0.0.1:8081");
  // Wait for scripts to finish executing, there might be exceptions that
  // happen after the page has been painted.
  await page.waitForTimeout(2000);
  await expect(page.getByText("Could not connect to")).toBeVisible();
});