@@ -100,7 +100,7 @@ module('Acceptance | Enterprise | Transform secrets', function (hooks) {
100100 } ) ;
101101
102102 test ( 'it can create a transformation and add itself to the role attached' , async function ( assert ) {
103- await visit ( '/vault/settings/mount-secret-backend ' ) ;
103+ await visit ( '/vault/secrets/mounts ' ) ;
104104 const backend = `transform-${ uuidv4 ( ) } ` ;
105105 await click ( '[data-test-mount-type="transform"]' ) ;
106106 await fillIn ( GENERAL . inputByAttr ( 'path' ) , backend ) ;
@@ -152,7 +152,7 @@ module('Acceptance | Enterprise | Transform secrets', function (hooks) {
152152
153153 test ( 'it can create a role and add itself to the transformation attached' , async function ( assert ) {
154154 const roleName = 'my-role' ;
155- await visit ( '/vault/settings/mount-secret-backend ' ) ;
155+ await visit ( '/vault/secrets/mounts ' ) ;
156156 const backend = `transform-${ uuidv4 ( ) } ` ;
157157 await mountBackend ( 'transform' , backend ) ;
158158 // create transformation without role
@@ -192,7 +192,7 @@ module('Acceptance | Enterprise | Transform secrets', function (hooks) {
192192
193193 test ( 'it adds a role to a transformation when added to a role' , async function ( assert ) {
194194 const roleName = 'role-test' ;
195- await visit ( '/vault/settings/mount-secret-backend ' ) ;
195+ await visit ( '/vault/secrets/mounts ' ) ;
196196 const backend = `transform-${ uuidv4 ( ) } ` ;
197197 await mountBackend ( 'transform' , backend ) ;
198198 const transformation = await newTransformation ( backend , 'b-transformation' , true ) ;
@@ -204,7 +204,7 @@ module('Acceptance | Enterprise | Transform secrets', function (hooks) {
204204
205205 test ( 'it shows a message if an update fails after save' , async function ( assert ) {
206206 const roleName = 'role-remove' ;
207- await visit ( '/vault/settings/mount-secret-backend ' ) ;
207+ await visit ( '/vault/secrets/mounts ' ) ;
208208 const backend = `transform-${ uuidv4 ( ) } ` ;
209209 await mountBackend ( 'transform' , backend ) ;
210210 // Create transformation
@@ -242,7 +242,7 @@ module('Acceptance | Enterprise | Transform secrets', function (hooks) {
242242
243243 test ( 'it allows creation and edit of a template' , async function ( assert ) {
244244 const templateName = 'my-template' ;
245- await visit ( '/vault/settings/mount-secret-backend ' ) ;
245+ await visit ( '/vault/secrets/mounts ' ) ;
246246 const backend = `transform-${ uuidv4 ( ) } ` ;
247247 await mountBackend ( 'transform' , backend ) ;
248248 await click ( '[data-test-secret-list-tab="Templates"]' ) ;
@@ -284,7 +284,7 @@ module('Acceptance | Enterprise | Transform secrets', function (hooks) {
284284
285285 test ( 'it allows creation and edit of an alphabet' , async function ( assert ) {
286286 const alphabetName = 'vowels-only' ;
287- await visit ( '/vault/settings/mount-secret-backend ' ) ;
287+ await visit ( '/vault/secrets/mounts ' ) ;
288288 const backend = `transform-${ uuidv4 ( ) } ` ;
289289 await mountBackend ( 'transform' , backend ) ;
290290 await click ( '[data-test-secret-list-tab="Alphabets"]' ) ;
0 commit comments