10000 Add helper text to unauthorized error messages by AbhineetJain · Pull Request #1670 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

Add helper text to unauthorized error messages #1670

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 10 commits into from
May 23, 2022
Prev Previous commit
Next Next commit
fix test name
  • Loading branch information
AbhineetJain committed May 23, 2022
commit 499168cf6d1c7e6c6504c54be118e467394766df
2 changes: 1 addition & 1 deletion cli/userlist_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func TestUserList(t *testing.T) {

require.Contains(t, err.Error(), "Try running \"coder login [url]\"")
})
t.Run("NoSessionAuthErrorHasHelperText", func(t *testing.T) {
t.Run("SessionAuthErrorHasHelperText", func(t *testing.T) {
t.Parallel()

client := coderdtest.New(t, &coderdtest.Options{IncludeProvisionerD: true})
Expand Down
0