Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Lens] Restore embeddable test coverage #204986

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4289e4c
:wrench: Add a retry
dej611 Dec 16, 2024
5666aec
:bug: Fix renderMode missing prop
dej611 Dec 19, 2024
5ff2505
:truck: Move blocking errors to the internalApi
dej611 Dec 19, 2024
4dd0197
:fire: Simplify code
dej611 Dec 19, 2024
aa9109f
:white_check_mark: Add more tests for embeddable
dej611 Dec 19, 2024
8d2973b
Merge remote-tracking branch 'upstream/main' into fix/198754
dej611 Dec 19, 2024
aece621
:bug: Fix merge conflict bugs
dej611 Dec 19, 2024
affa1f9
:white_check_mark: Integrate last tests
dej611 Dec 19, 2024
55c3a33
Merge branch 'fix/198754' of https://github.com/dej611/kibana into fi…
dej611 Dec 19, 2024
ac62c29
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine Dec 19, 2024
87969b5
Merge branch 'main' into fix/198754
dej611 Dec 19, 2024
7225ca6
:recycle: Revert commit
dej611 Dec 19, 2024
b805131
Merge branch 'fix/198754' of https://github.com/dej611/kibana into fi…
dej611 Dec 19, 2024
1e518ae
Merge branch 'main' into fix/198754
mbondyra Dec 30, 2024
bdcda2a
Merge branch 'main' into fix/198754
dej611 Jan 7, 2025
6308ab8
:label: Fix type issue
dej611 Jan 7, 2025
2b4498c
:recycle: Avoid stale mock issues
dej611 Jan 7, 2025
de88378
Merge branch 'main' into fix/198754
dej611 Jan 8, 2025
a83b711
Merge remote-tracking branch 'upstream/main' into fix/198754
dej611 Jan 8, 2025
eaf3182
Merge branch 'fix/198754' of https://github.com/dej611/kibana into fi…
dej611 Jan 8, 2025
a9ae0ac
:ok_hand: Rename function
dej611 Jan 8, 2025
5a8f5a5
:ok_hand: Use ids
dej611 Jan 8, 2025
77f8a15
:white_check_mark: Add missing test
dej611 Jan 8, 2025
58c6e19
Merge branch 'main' into fix/198754
dej611 Jan 8, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export function mockDataPlugin(
},
search: createMockSearchService(),
nowProvider: {
get: jest.fn(),
get: jest.fn(() => new Date()),
},
fieldFormats: {
deserialize: jest.fn(),
Expand Down
Loading