Initial commit
CI / schema-and-codegen (push) Failing after 29s

This commit is contained in:
root
2026-06-20 03:54:40 -04:00
commit 9494f85b78
57 changed files with 3324 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import http from "k6/http";
import { check } from "k6";
export const options = {
vus: 5,
duration: "20s",
};
export default function () {
const payload = JSON.stringify({ query: "{ __typename }" });
const res = http.post("http://127.0.0.1:4000/graphql", payload, {
headers: { "Content-Type": "application/json" },
});
check(res, { "status 200": (r) => r.status === 200 });
}