Skip to content

fix(cli): display pasted session token #9710

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(cli): expect session token in unit tests
  • Loading branch information
johnstcn committed Sep 20, 2023
commit 0c78651ba4ed684002bab373369884a4f5622c51
2 changes: 2 additions & 0 deletions cli/login_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ func TestLogin(t *testing.T) {

pty.ExpectMatch("Paste your token here:")
pty.WriteLine(client.SessionToken())
pty.ExpectMatch(client.SessionToken())
pty.ExpectMatch("Welcome to Coder")
<-doneChan
})
Expand All @@ -193,6 +194,7 @@ func TestLogin(t *testing.T) {

pty.ExpectMatch("Paste your token here:")
pty.WriteLine("an-invalid-token")
pty.ExpectMatch("an-invalid-token")
pty.ExpectMatch("That's not a valid token!")
cancelFunc()
<-doneChan
Expand Down