mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
13 lines
531 B
JavaScript
13 lines
531 B
JavaScript
import { createRequire } from 'node:module';
|
|
|
|
import { authedAdminTenantApi } from './lib/api/api.js';
|
|
|
|
// A patch for the global require function - see https://github.com/evanw/esbuild/issues/1921
|
|
// eslint-disable-next-line @silverhand/fp/no-mutation
|
|
globalThis.require = createRequire(import.meta.url);
|
|
|
|
// We need to update this before tests otherwise Logto will update SignInMode for admin tenant
|
|
// The update logic should be
|
|
await authedAdminTenantApi.patch('sign-in-exp', {
|
|
json: { signInMode: 'SignInAndRegister' },
|
|
});
|