0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/integration-tests/tests/connectors.test.ts

14 lines
413 B
TypeScript
Raw Normal View History

import { listConnectors } from '@/connector-api';
test('connector flow', async () => {
// List connectors after initializing a new Logto instance
const connectorDtos = await listConnectors();
// There should be no connectors, or all connectors should be disabled.
for (const connectorDto of connectorDtos) {
expect(connectorDto.enabled).toBeFalsy();
}
// Next up: set up a social connector
});