Skip to content

Commit

Permalink
Backport UI fix auth list test (#24202)
Browse files Browse the repository at this point in the history
  • Loading branch information
hashishaw authored Nov 20, 2023
1 parent d1a1dd4 commit 53fc7dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/tests/acceptance/auth-list-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ module('Acceptance | auth backend list', function (hooks) {

test('enterprise: token config within namespace', async function (assert) {
const ns = 'ns-wxyz';
await runCmd(`write sys/namespaces/${ns} -f`);
await consoleComponent.runCommands(`write sys/namespaces/${ns} -f`);
await authPage.loginNs(ns);
// go directly to token configure route
await visit('/vault/settings/auth/configure/token/options');
Expand All @@ -138,6 +138,6 @@ module('Acceptance | auth backend list', function (hooks) {
assert
.dom('[data-test-row-value="Description"]')
.hasText('My custom description', 'description was saved');
await runCmd(`delete sys/namespaces/${ns}`);
await consoleComponent.runCommands(`delete sys/namespaces/${ns}`);
});
});

0 comments on commit 53fc7dc

Please sign in to comment.