70bf21e064
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
Handle Changesets / Handle Changesets (push) Has been cancelled
Semgrep OSS scan / semgrep-oss (push) Has been cancelled
18 lines
453 B
TypeScript
18 lines
453 B
TypeScript
import { test, describe } from "vitest";
|
|
import "./base-tests";
|
|
import {
|
|
satisfiesMinimumViteVersion,
|
|
isBuild,
|
|
viteTestUrl,
|
|
} from "../../__test-utils__";
|
|
|
|
describe.runIf(satisfiesMinimumViteVersion("7.0.0"))("with-ssr", () => {
|
|
test.runIf(isBuild)(
|
|
"returns a server rendered response at /hello after the build",
|
|
async ({ expect }) => {
|
|
const response = await fetch(`${viteTestUrl}/hello`);
|
|
expect(response.status).toBe(200);
|
|
}
|
|
);
|
|
});
|