17 lines
508 B
TypeScript
17 lines
508 B
TypeScript
import { render as testingLibraryRender } from "@testing-library/react";
|
|
import { MantineProvider } from "@mantine/core";
|
|
import { theme } from "@/theme";
|
|
import React from "react";
|
|
|
|
export function render(ui: React.ReactNode) {
|
|
return testingLibraryRender(<>{ui}</>, {
|
|
wrapper: ({ children }: { children: React.ReactNode }) => (
|
|
<MantineProvider
|
|
theme={theme}
|
|
env="test">
|
|
{children}
|
|
</MantineProvider>
|
|
),
|
|
});
|
|
}
|