mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-29 20:20:57 +00:00
Remove unused method (#2721)
This commit is contained in:
parent
f19b9ed4f8
commit
dbd626054f
4 changed files with 11 additions and 36 deletions
|
|
@ -31,7 +31,6 @@ describe('AuthDialog', () => {
|
|||
const { lastFrame } = render(
|
||||
<AuthDialog
|
||||
onSelect={() => {}}
|
||||
onHighlight={() => {}}
|
||||
settings={settings}
|
||||
initialErrorMessage="GEMINI_API_KEY environment variable not found"
|
||||
/>,
|
||||
|
|
@ -59,11 +58,7 @@ describe('AuthDialog', () => {
|
|||
);
|
||||
|
||||
const { lastFrame, stdin, unmount } = render(
|
||||
<AuthDialog
|
||||
onSelect={onSelect}
|
||||
onHighlight={() => {}}
|
||||
settings={settings}
|
||||
/>,
|
||||
<AuthDialog onSelect={onSelect} settings={settings} />,
|
||||
);
|
||||
await wait();
|
||||
|
||||
|
|
@ -96,11 +91,7 @@ describe('AuthDialog', () => {
|
|||
);
|
||||
|
||||
const { stdin, unmount } = render(
|
||||
<AuthDialog
|
||||
onSelect={onSelect}
|
||||
onHighlight={() => {}}
|
||||
settings={settings}
|
||||
/>,
|
||||
<AuthDialog onSelect={onSelect} settings={settings} />,
|
||||
);
|
||||
await wait();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue