Coexists with Mocha (kept for unit-style tests) and Cypress (unchanged, web e2e). Adds: - apps/api/features/*.feature — Gherkin scenarios - apps/api/features/step-definitions/*.steps.ts — step implementations - apps/api/features/support/world.ts — per-scenario World, spins up the Express app in-process via createApp() + supertest (no real server needed, same approach as the existing Mocha health test) - apps/api/cucumber.cjs — config, deliberately .cjs (not .js) to avoid the same ESM/CJS config-loading mismatch that broke apps/web/cypress.config.ts earlier - `test:bdd` script (cross-env + tsx via NODE_OPTIONS=--import=tsx, for cross-platform ESM+TS loading) - health.feature/steps as a working example, mirroring the existing Mocha health test so both suites cover the same behavior in their respective styles CI: runs `pnpm --filter api test:bdd` alongside the existing test step. README: documents the new test layer and the TS/ESM config-loading caveat for future tool configs. Verified locally: lint, mocha, cucumber, and full build all pass.
16 lines
632 B
TypeScript
16 lines
632 B
TypeScript
import assert from "node:assert/strict";
|
|
import { Then, When } from "@cucumber/cucumber";
|
|
import request from "supertest";
|
|
import type { CustomWorld } from "../support/world.js";
|
|
|
|
When("I send a GET request to {string}", async function (this: CustomWorld, path: string) {
|
|
this.response = await request(this.app).get(path);
|
|
});
|
|
|
|
Then("the response status should be {int}", function (this: CustomWorld, status: number) {
|
|
assert.equal(this.response.status, status);
|
|
});
|
|
|
|
Then("the response body should be:", function (this: CustomWorld, expectedJson: string) {
|
|
assert.deepEqual(this.response.body, JSON.parse(expectedJson));
|
|
});
|