1
0
Fork 0
mirror of https://github.com/xHyroM/waki.git synced 2024-09-20 04:33:18 +02:00
waki/test/index.spec.ts
Jozef Steinhübl 7c0f11b1ae
Initial commit (by create-cloudflare CLI)
Details:
  C3 = create-cloudflare@2.21.2
  project name = waki
  package manager = pnpm@9.0.5
  wrangler = wrangler@3.57.0
  git = 2.45.0
2024-05-20 10:34:18 +02:00

25 lines
1.1 KiB
TypeScript

// test/index.spec.ts
import { env, createExecutionContext, waitOnExecutionContext, SELF } from 'cloudflare:test';
import { describe, it, expect } from 'vitest';
import worker from '../src/index';
// For now, you'll need to do something like this to get a correctly-typed
// `Request` to pass to `worker.fetch()`.
const IncomingRequest = Request<unknown, IncomingRequestCfProperties>;
describe('Hello World worker', () => {
it('responds with Hello World! (unit style)', async () => {
const request = new IncomingRequest('http://example.com');
// Create an empty context to pass to `worker.fetch()`.
const ctx = createExecutionContext();
const response = await worker.fetch(request, env, ctx);
// Wait for all `Promise`s passed to `ctx.waitUntil()` to settle before running test assertions
await waitOnExecutionContext(ctx);
expect(await response.text()).toMatchInlineSnapshot(`"Hello World!"`);
});
it('responds with Hello World! (integration style)', async () => {
const response = await SELF.fetch('https://example.com');
expect(await response.text()).toMatchInlineSnapshot(`"Hello World!"`);
});
});