Skip to content

Commit 46b3bd5

Browse files
committed
fix: tests
1 parent 76b37bb commit 46b3bd5

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

tests/suites/tenant/diagnostics/tabs/access.test.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ test.describe('Diagnostics Access tab', async () => {
2222
await expect(diagnostics.isOwnerCardVisible()).resolves.toBe(true);
2323
});
2424

25-
// TODO: https://github.com/ydb-platform/ydb-embedded-ui/issues/2437
26-
test.skip('Can change owner on access tab', async ({page}) => {
25+
test('Can change owner on access tab', async ({page}) => {
2726
const pageQueryParams = {
2827
schema: '/local/.sys_health',
2928
database: '/local',
@@ -48,12 +47,12 @@ test.describe('Diagnostics Access tab', async () => {
4847
expect(updatedOwnerName).not.toBe(initialOwnerName);
4948
});
5049

51-
// TODO: https://github.com/ydb-platform/ydb-embedded-ui/issues/2437
52-
test.skip('Owner card is visible after navigating to access tab', async ({page}) => {
50+
test('Owner card is visible after navigating to access tab', async ({page}) => {
5351
const pageQueryParams = {
54-
schema: '/dev02/home/xenoxeno/db1/my_row_table',
55-
database: '/dev02/home/xenoxeno/db1',
52+
schema: '/local/.sys_health',
53+
database: '/local',
5654
tenantPage: 'diagnostics',
55+
diagnosticsTab: 'access',
5756
};
5857
const tenantPage = new TenantPage(page);
5958
await tenantPage.goto(pageQueryParams);

0 commit comments

Comments
 (0)