Skip to content

Commit 6448b73

Browse files
test: fix failed tests
1 parent b47a193 commit 6448b73

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

tests/suites/nodes/nodes.test.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,10 @@ test.describe('Test Nodes Paginated Table', async () => {
123123

124124
expect(rowData).toHaveProperty('Host');
125125
expect(rowData).toHaveProperty('Uptime');
126-
expect(rowData).toHaveProperty('Detailed Memory');
127-
expect(rowData).toHaveProperty('Pools');
126+
expect(rowData).toHaveProperty('CPU');
127+
expect(rowData).toHaveProperty('RAM');
128+
expect(rowData).toHaveProperty('Version');
129+
expect(rowData).toHaveProperty('Tablets');
128130
});
129131

130132
test('Column values can be retrieved correctly', async ({page}) => {

tests/suites/storage/storage.test.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,11 @@ test.describe('Test Storage Paginated Table', async () => {
105105

106106
const rowData = await storageTable.getRowData(0);
107107

108+
expect(rowData).toHaveProperty('Group ID');
108109
expect(rowData).toHaveProperty('Pool Name');
109-
expect(rowData).toHaveProperty('Type');
110110
expect(rowData).toHaveProperty('Erasure');
111-
expect(rowData).toHaveProperty('Usage');
111+
expect(rowData).toHaveProperty('Used');
112+
expect(rowData).toHaveProperty('VDisks');
112113
});
113114

114115
test('Column values can be retrieved correctly', async ({page}) => {

0 commit comments

Comments
 (0)