Skip to content

Commit

Permalink
frontent: update to changes in latest master
Browse files Browse the repository at this point in the history
  • Loading branch information
bojand authored and jvorcak committed Jun 17, 2024
1 parent b337fff commit 56eb7b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/tests/config/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ volumes:
redpanda: null
services:
redpanda:
image: redpandadata/redpanda-unstable:v24.1.1-rc8
image: redpandadata/redpanda:v24.1.1
container_name: redpanda
command:
- redpanda start
Expand Down
4 changes: 2 additions & 2 deletions frontend/tests/console-enterprise/roles.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test.describe('Roles', () => {
await createRole(page, {roleName});

await page.waitForURL(`/security/roles/${roleName}/details`);
const userInfoEl = page.locator('text=\'This role is assigned to 0 members\'');
const userInfoEl = page.locator('text=\'This role is assigned to 0 principals\'');
await expect(userInfoEl).toBeVisible(); // Asserts that the element is visible

await deleteRole(page, {roleName});
Expand Down Expand Up @@ -37,7 +37,7 @@ test.describe('Roles', () => {
await page.getByRole('button').getByText('Create').click();

await page.waitForURL(`/security/roles/${roleName}/details`);
const userInfoEl = page.locator('text=\'This role is assigned to 1 member\'');
const userInfoEl = page.locator('text=\'This role is assigned to 1 principal\'');
await expect(userInfoEl).toBeVisible(); // Asserts that the element is visible

await deleteUser(page, {username});
Expand Down
3 changes: 0 additions & 3 deletions frontend/tests/console-enterprise/users.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ test.describe('Users', () => {
});

test('should be able to search for an user with regexp', async ({page}) => {
// TODO FIXME
test.skip()

const r = (Math.random() + 1).toString(36).substring(7);

const userName1 = `user-${r}-regexp-1`;
Expand Down

0 comments on commit 56eb7b2

Please sign in to comment.