mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
* refactor(packaging): reorganize published packages * fix(packaging): install AgentScope extra in wheel smoke * docs: align package guides and documentation site * ci(workflow): add core dependency verification step in Python package build - Add a workflow step to verify released core dependencies by installing the wheel with core extras - Assert the presence of the static index.html file to ensure proper package contents - Create and use a temporary virtual environment for isolation during verification - Keep existing artifacts upload step intact and conditional on inputs.upload_artifacts flag * fix(ci): update package installation dependencies in Windows workflow - Change pip install from editable reme_studio and core to only dev and as extras - Remove installation of reme_studio and core to streamline dependency setup - Ensure Windows CI uses the correct extras for testing environment * fix(tests): add missing commas in toml file reads in package version tests - Added trailing commas in the tomllib.loads calls for auto-fin and daily_paper configs - Ensured consistent syntax to prevent potential tuple misinterpretation - Improved readability and correctness of the test setup code * fix(packaging): protect qwenpaw releases and test Studio health
31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
import assert from "node:assert/strict";
|
|
import test from "node:test";
|
|
|
|
async function render() {
|
|
const workerUrl = new URL("../dist/server/index.js", import.meta.url);
|
|
workerUrl.searchParams.set("test", `${process.pid}-${Date.now()}`);
|
|
const { default: worker } = await import(workerUrl.href);
|
|
|
|
return worker.fetch(
|
|
new Request("http://localhost/", { headers: { accept: "text/html" } }),
|
|
{
|
|
ASSETS: { fetch: async () => new Response("Not found", { status: 404 }) },
|
|
},
|
|
{ waitUntil() {}, passThroughOnException() {} },
|
|
);
|
|
}
|
|
|
|
test("server-renders the ReMe Studio shell", async () => {
|
|
const response = await render();
|
|
assert.equal(response.status, 200);
|
|
assert.match(response.headers.get("content-type") ?? "", /^text\/html\b/i);
|
|
|
|
const html = await response.text();
|
|
assert.match(html, /<title>ReMe Studio<\/title>/i);
|
|
assert.match(html, /新建 Agent 对话/);
|
|
assert.match(html, /文件保留在你的本地工作区/);
|
|
assert.doesNotMatch(
|
|
html,
|
|
/codex-preview|Your site is taking shape|react-loading-skeleton/i,
|
|
);
|
|
});
|