auth.ts 295 B

123456
  1. import { Terminal } from "@microsoft/tui-test/lib/terminal/term"
  2. import { expectVisible } from "../terminal.js"
  3. export async function waitForAuthScreen(terminal: Terminal): Promise<void> {
  4. await expectVisible(terminal, ["Sign in with Cline", "Sign in with ChatGPT", "Use your own API key"])
  5. }