mirror of
https://github.com/cloudflare/workers-rs.git
synced 2025-12-08 18:01:59 +00:00
13 lines
324 B
TypeScript
13 lines
324 B
TypeScript
import { describe, test, expect } from "vitest";
|
|
import { mf, mfUrl } from "./mf";
|
|
|
|
describe("analytics engine", () => {
|
|
test("write data point", async () => {
|
|
const resp = await mf.dispatchFetch(
|
|
`${mfUrl}analytics-engine`,
|
|
);
|
|
console.log(await resp.text())
|
|
expect(resp.status).toBe(200);
|
|
});
|
|
});
|