Skip to content

Commit 76b37bb

Browse files
authored
fix: unskip tests (#2436)
1 parent e1499e9 commit 76b37bb

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

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

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

25-
test('Can change owner on access tab', async ({page}) => {
25+
// TODO: https://github.com/ydb-platform/ydb-embedded-ui/issues/2437
26+
test.skip('Can change owner on access tab', async ({page}) => {
2627
const pageQueryParams = {
2728
schema: '/local/.sys_health',
2829
database: '/local',
@@ -47,7 +48,8 @@ test.describe('Diagnostics Access tab', async () => {
4748
expect(updatedOwnerName).not.toBe(initialOwnerName);
4849
});
4950

50-
test('Owner card is visible after navigating to access tab', async ({page}) => {
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}) => {
5153
const pageQueryParams = {
5254
schema: '/dev02/home/xenoxeno/db1/my_row_table',
5355
database: '/dev02/home/xenoxeno/db1',
@@ -84,7 +86,7 @@ test.describe('Diagnostics Access tab', async () => {
8486
await expect(diagnostics.isGrantAccessDrawerVisible()).resolves.toBe(true);
8587
});
8688

87-
test.only('Can grant full access to a new subject', async ({page}) => {
89+
test('Can grant full access to a new subject', async ({page}) => {
8890
const pageQueryParams = {
8991
schema: '/local/.sys_health',
9092
database: '/local',

0 commit comments

Comments
 (0)