summaryrefslogtreecommitdiff
path: root/internal/suites/suite_envoy_test.go
diff options
context:
space:
mode:
authorBrynn Crowley <littlehill723@gmail.com>2025-03-06 08:24:19 +0000
committerGitHub <noreply@github.com>2025-03-06 08:24:19 +0000
commitf4abcb34b757e40467344ffdd7cec9f77f46a227 (patch)
treef3cc73da2ebaa978186f6f470d5bd27b279f6a96 /internal/suites/suite_envoy_test.go
parent5b52a9d4b18b5a07b1edb7403b6dc90b8d5c628d (diff)
feat(web): change password (#7676)
Add the ability for users to change their password from their user settings, without requiring them to use the reset password workflow. User's are required to create a elevated session in order to change their password. Users may not change their password to their current password. The user's current password is required for the password change. Users must follow any established password policies. Administrators are able to turn this feature off. Closes #3548
Diffstat (limited to 'internal/suites/suite_envoy_test.go')
-rw-r--r--internal/suites/suite_envoy_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/suites/suite_envoy_test.go b/internal/suites/suite_envoy_test.go
index 19ac4ae31..6952c274a 100644
--- a/internal/suites/suite_envoy_test.go
+++ b/internal/suites/suite_envoy_test.go
@@ -32,6 +32,10 @@ func (s *EnvoySuite) TestResetPasswordScenario() {
suite.Run(s.T(), NewResetPasswordScenario())
}
+func (s *EnvoySuite) TestChangePasswordScenario() {
+ suite.Run(s.T(), NewChangePasswordScenario())
+}
+
func TestEnvoySuite(t *testing.T) {
if testing.Short() {
t.Skip("skipping suite test in short mode")