2024-06-03 00:11:19 +02:00
|
|
|
import { createGetKcContextMock } from "../../dist/login";
|
2024-06-03 18:28:34 +02:00
|
|
|
import type {
|
|
|
|
KcContextExtraProperties,
|
|
|
|
KcContextExtraPropertiesPerPage
|
|
|
|
} from "./kcContext";
|
2024-06-03 00:11:19 +02:00
|
|
|
|
|
|
|
const kcContextExtraProperties: KcContextExtraProperties = {};
|
|
|
|
const kcContextExtraPropertiesPerPage: KcContextExtraPropertiesPerPage = {};
|
|
|
|
|
|
|
|
export const { getKcContextMock } = createGetKcContextMock({
|
|
|
|
kcContextExtraProperties,
|
|
|
|
kcContextExtraPropertiesPerPage
|
|
|
|
});
|