@kilterset/auth0-actions-testing
Version:
Test and develop Auth0 Actions or Okta CIC Actions locally.
17 lines (13 loc) • 348 B
text/typescript
import { error } from "console";
export function validationMock(flow: string) {
const state = {
error: null as null | { code: string; message: string },
};
const build = <T>(api: T) => ({
error: (code: string, message: string) => {
state.error = { code, message };
return api;
},
});
return { state, build };
}