mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-13 01:32:40 +02:00
14 lines
579 B
TypeScript
14 lines
579 B
TypeScript
import type { Page } from "@playwright/test";
|
|
|
|
/**
|
|
* Placeholder for the Composio Drive configuration view (folder
|
|
* selector + indexing options) rendered by ConnectorEditView.
|
|
*
|
|
* Phase 1 specs drive folder/file selection through the API helper
|
|
* (`updateConnectorConfig`) and `triggerIndex` for determinism. UI-
|
|
* level interaction with the folder tree is a Phase 2 task; this
|
|
* module is reserved for those selectors.
|
|
*/
|
|
export async function reservedForPhaseTwo(_page: Page): Promise<void> {
|
|
// Intentionally empty. See README in tests/connectors/composio/drive/.
|
|
}
|