Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a40270c
Fixed tests
vladenisov Mar 1, 2026
04430ed
Add babel-jest as a dev dependency for improved testing support
vladenisov Mar 1, 2026
f92d36e
react 16 -> 18
vladenisov Mar 10, 2026
020834f
react 18 -> 19
vladenisov Mar 11, 2026
d22bd25
chore: update peer dependencies to support Ant Design 5 and React 19
vladenisov Mar 12, 2026
8214b2e
Ran prettier for all files
vladenisov Mar 18, 2026
f98522f
refactor: remove unused durationHumanize import from ScheduleDialog test
vladenisov Mar 18, 2026
291dbbc
feat: update DashboardPage to remove unnecessary propTypes and enhanc…
vladenisov Mar 18, 2026
00bb5ca
fix lint errors
vladenisov Mar 18, 2026
dfd0087
e2e tests: fixed `query/parameter_spec.js`
vladenisov Mar 18, 2026
8d7e5b1
e2e tests: fixed `alert/view_alert_spec.js`, `dashboard/dashboard_spe…
vladenisov Mar 18, 2026
fa43e3a
e2e tests: fixed the rest
vladenisov Mar 18, 2026
5a1e080
review fixes
vladenisov Mar 18, 2026
657b711
e2e tests: fixed `share_embed_spec.js`, `create_query_spec.js`, `tabl…
vladenisov Mar 19, 2026
d4c98ae
Prettier
vladenisov Mar 19, 2026
b0a510f
fixed lint error
vladenisov Mar 19, 2026
10fe12a
fixed unit test errors
vladenisov Mar 19, 2026
895fdff
refactor: update error handling in view_alert_spec and enhance date f…
vladenisov Mar 19, 2026
1c2c78e
test: enhance non-author destination removal validation in view_alert…
vladenisov Mar 19, 2026
ec8bf5d
Merge branch 'master' into react-update
vladenisov Mar 19, 2026
a055a4a
refactor: replace moment.js with dayjs in DateTimeInput and DateTimeR…
vladenisov Mar 19, 2026
53a4459
prettier
vladenisov Mar 19, 2026
e562528
chore: update @typescript-eslint packages and adjust ESLint configura…
vladenisov Mar 19, 2026
6318c91
remove `react-plotly.js` dependency
vladenisov Mar 20, 2026
55bac17
upgrade `antd` v5 -> v6
vladenisov Mar 20, 2026
e5d25e6
unit tests fixed
vladenisov Mar 20, 2026
a53bd81
e2e tests fixed
vladenisov Mar 20, 2026
503cbbd
fix: normalize filter type handling and add tests for multi-filter al…
vladenisov Mar 20, 2026
774ab9b
lint fixed
vladenisov Mar 20, 2026
428f0fe
refactor: streamline JSDOM shims and update test mocks for consistency
vladenisov Mar 20, 2026
9624e26
feat: enhance Cypress tests with utility functions for chart column m…
vladenisov Mar 20, 2026
47d576b
fix: detach window resize listener on component unmount and streamlin…
vladenisov Mar 21, 2026
79e3536
feat: enhance DesktopNavbar accessibility by moving icons into labels…
vladenisov Mar 21, 2026
25b4305
feat: enhance Cypress commands for selecting Ant Design options and i…
vladenisov Mar 21, 2026
b95ff0c
feat: enhance Cypress tests for query and visualization handling with…
vladenisov Mar 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion client/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ module.exports = {
// Many API fields and generated types use camelcase
camelcase: "off",
// Allow {} type - used extensively in existing codebase
"@typescript-eslint/ban-types": ["error", { types: { "{}": false } }],
"@typescript-eslint/no-empty-object-type": "off",
},
},
{
Expand Down
4 changes: 0 additions & 4 deletions client/app/__tests__/enzyme_setup.js

This file was deleted.

6 changes: 2 additions & 4 deletions client/app/__tests__/mocks.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import MockDate from "mockdate";
const { installCommonJsdomShims } = require("../../../test-support/jest/jsdom-shims");

const date = new Date("2000-01-01T02:00:00.000");

MockDate.set(date);
installCommonJsdomShims();
Loading
Loading