web-next: bindAllProduction calls all 4 feature binders exactly once; Providers renders children. web-tanstack: equivalent providers + bind tests. cms: payload.config exports a SanitizedConfig with all expected collections. Spec: §6.7, §9 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
379 B
TypeScript
15 lines
379 B
TypeScript
import { describe, it, expect } from "vitest";
|
|
import { render, screen } from "@testing-library/react";
|
|
import { Providers } from "./providers";
|
|
|
|
describe("Providers", () => {
|
|
it("renders children", () => {
|
|
render(
|
|
<Providers>
|
|
<div data-testid="child">hi</div>
|
|
</Providers>,
|
|
);
|
|
expect(screen.getByTestId("child")).toBeInTheDocument();
|
|
});
|
|
});
|