Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions tests/smoke/test_ucc_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,6 @@ def remove_hash(filename):
normalized_files = [remove_hash(f) for f in cleaned_files]

expected_js_files_list = [
"ArrowBroadUnderbarDown.js",
"assets",
"ConfigurationPage.js",
"Dashboard.consts.js",
Expand All @@ -809,7 +808,7 @@ def remove_hash(filename):
"purify.es.js",
"redirect_page.js",
"Search.js",
"Search.js",
"toUpper.js",
"usePlatform.js",
]
assert sorted(normalized_files) == sorted(expected_js_files_list)
Expand Down
44 changes: 22 additions & 22 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
"prepublishOnly": "yarn run build:lib"
},
"dependencies": {
"@splunk/dashboard-action-buttons": "29.0.0",
"@splunk/dashboard-context": "29.0.0",
"@splunk/dashboard-core": "29.0.0",
"@splunk/dashboard-presets": "29.0.0",
"@splunk/dashboard-state": "29.0.0",
"@splunk/dashboard-types": "29.0.0",
"@splunk/dashboard-action-buttons": "29.4.0",
"@splunk/dashboard-context": "29.4.0",
"@splunk/dashboard-core": "29.4.0",
"@splunk/dashboard-presets": "29.4.0",
"@splunk/dashboard-state": "29.4.0",
"@splunk/dashboard-types": "29.4.0",
"@splunk/react-events-viewer": "^28.0.0",
"@splunk/react-icons": "^5.2.0",
"@splunk/react-page": "^8.0.0",
Expand All @@ -45,7 +45,7 @@
"@splunk/splunk-utils": "^3.2.0",
"@splunk/themes": "^1.2.0",
"@splunk/ui-utils": "^1.10.0",
"@splunk/visualization-context": "^28.0.0",
"@splunk/visualization-context": "^28.4.0",
"@storybook/test": "^8.6.14",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^15.0.6",
Expand Down Expand Up @@ -163,23 +163,23 @@
"axios": "^1.12.0",
"jspdf": "^4.0.0",
"http-proxy-middleware": "^3.0.5",
"@splunk/dashboard-event-handlers": "29.0.0",
"@splunk/dashboard-inputs": "29.0.0",
"@splunk/dashboard-search": "29.0.0",
"@splunk/datasources": "29.0.0",
"@splunk/visualization-schemas": "28.0.0",
"@splunk/dashboard-definition": "29.0.0",
"@splunk/dashboard-icons": "29.0.0",
"@splunk/dashboard-layouts": "29.0.0",
"@splunk/dashboard-state": "29.0.0",
"@splunk/dashboard-telemetry": "29.0.0",
"@splunk/dashboard-ui": "29.0.0",
"@splunk/dashboard-utils": "29.0.0",
"@splunk/dashboard-validation": "29.0.0",
"@splunk/datasource-utils": "29.0.0"
"@splunk/dashboard-event-handlers": "29.4.0",
"@splunk/dashboard-inputs": "29.4.0",
"@splunk/dashboard-search": "29.4.0",
"@splunk/datasources": "29.4.0",
"@splunk/visualization-schemas": "28.4.0",
"@splunk/dashboard-definition": "29.4.0",
"@splunk/dashboard-icons": "29.4.0",
"@splunk/dashboard-layouts": "29.4.0",
"@splunk/dashboard-state": "29.4.0",
"@splunk/dashboard-telemetry": "29.4.0",
"@splunk/dashboard-ui": "29.4.0",
"@splunk/dashboard-utils": "29.4.0",
"@splunk/dashboard-validation": "29.4.0",
"@splunk/datasource-utils": "29.4.0"
},
"engines": {
"node": "22.21.0",
"node": "22.22.0",
"yarn": "^1.22.22"
},
"msw": {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions ui/src/pages/Dashboard/tests/DashBoardPage.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ it('render with all default dashboards', async () => {
render(<DashboardPage />);
await waitFor(
() => expect(screen.queryAllByTestId('wait-spinner').length).toBe(0), // no waiting spinner should be present
{ timeout: 7000 }
{ timeout: 15000 }
);

const timeLabels = await screen.findAllByText('Time');
Expand Down Expand Up @@ -86,4 +86,4 @@ it('render with all default dashboards', async () => {

expect(elementWithId).toBeInTheDocument();
});
}, 8000);
}, 20000);
2 changes: 1 addition & 1 deletion ui/src/pages/Dashboard/tests/DashboardModal.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,5 @@ describe('render data ingestion modal inputs', () => {
expect(screen.getByTestId(id)).toBeInTheDocument();
});
});
});
}, 20000);
});
Loading