mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
7 lines
224 B
JavaScript
7 lines
224 B
JavaScript
|
|
// api/test/__mocks__/openid-client-passport.js
|
||
|
|
const Strategy = jest.fn().mockImplementation((options, verify) => {
|
||
|
|
return { name: 'mocked-openid-passport-strategy', options, verify };
|
||
|
|
});
|
||
|
|
|
||
|
|
module.exports = { Strategy };
|