Skip to content
Merged
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
5b5195e
sync(*): master to develop
ovh-cds Oct 23, 2025
02462f5
sync(*): master to develop
ovh-cds Oct 23, 2025
1c3c2c8
fix(i18n): add missing translations [CDS 4424]
ovh-cds Oct 24, 2025
4f6f752
fix(i18n): add missing translations [CDS 4425]
ovh-cds Oct 25, 2025
5f03207
sync(*): master to develop
ovh-cds Oct 27, 2025
74c1097
sync(*): master to develop
ovh-cds Oct 27, 2025
2e8d13c
sync(*): master to develop
ovh-cds Oct 27, 2025
09157b5
sync(*): master to develop
ovh-cds Oct 27, 2025
e9f7551
sync(*): master to develop
ovh-cds Oct 27, 2025
38d4522
sync(*): master to develop
ovh-cds Oct 27, 2025
98a9017
sync(*): master to develop
ovh-cds Oct 27, 2025
96e6148
fix(i18n): add missing translations [CDS 4427]
ovh-cds Oct 27, 2025
0315c2b
sync(*): master to develop
ovh-cds Oct 27, 2025
7dcefce
sync(*): master to develop
ovh-cds Oct 27, 2025
026822a
sync(*): master to develop
ovh-cds Oct 27, 2025
7e256a8
fix(*): remove unused translations [CDS]
ovh-cds Oct 28, 2025
8e4c68d
sync(*): master to develop
ovh-cds Oct 28, 2025
fff85e0
sync(*): master to develop
ovh-cds Oct 28, 2025
18b2d49
ci(pci-instances): migrate µapp to pnpm hybrid config
fredericvilcot Oct 13, 2025
c4944c2
fix(i18n): add missing translations [CDS 4431]
fredericvilcot Oct 28, 2025
3fa756d
sync(*): master to develop
ovh-cds Oct 28, 2025
60f5e78
sync(*): master to develop
ovh-cds Oct 28, 2025
7a46845
sync(*): master to develop
ovh-cds Oct 28, 2025
904ebd5
sync(*): master to develop
ovh-cds Oct 28, 2025
67eb37d
sync(*): master to develop
ovh-cds Oct 29, 2025
db6a6b7
sync(*): master to develop
ovh-cds Oct 29, 2025
bc28205
fix(muk): update filter add snapshot spec
aboungnaseng-ovhcloud Oct 28, 2025
7043df7
fix(i18n): add missing translations [CDS 4434]
aboungnaseng-ovhcloud Oct 29, 2025
dd05860
sync(*): master to develop
ovh-cds Oct 29, 2025
fc50628
sync(*): master to develop
ovh-cds Oct 29, 2025
d7f5475
feat(public-cloud): distant-backup - translate copying status
aTurmo Oct 14, 2025
cd3e5e1
feat(pci-instances): distant-backup - allow distant backup creation f…
aTurmo Oct 14, 2025
b03ad50
sync(*): master to develop
aTurmo Oct 29, 2025
cd42226
sync(*): develop to master
anooparveti Oct 29, 2025
ec6b03d
feat(muk): correct lint error and comment flaky test
anooparveti Oct 30, 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
@@ -1 +1,5 @@
["packages/manager/apps/web-office", "packages/manager/apps/zimbra"]
[
"packages/manager/apps/web-office",
"packages/manager/apps/zimbra",
"packages/manager/apps/pci-instances"
]
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
"packages/manager/apps/pci-databases-analytics",
"packages/manager/apps/pci-dataplatform",
"packages/manager/apps/pci-gateway",
"packages/manager/apps/pci-instances",
"packages/manager/apps/pci-kubernetes",
"packages/manager/apps/pci-load-balancer",
"packages/manager/apps/pci-object-storage",
Expand Down Expand Up @@ -87,4 +86,4 @@
"packages/manager-tools/manager-legacy-tools/*",
"packages/manager-ui-kit",
"packages/manager-wiki"
]
]
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"user_account_guides_header": "Guides",
"mrc_changelog_header": "Roadmap & Changelog",
"mrc_changelog_roadmap": "Roadmap",
"mrc_changelog_changelog": "Changelog",
"mrc_changelog_feature-request": "Feature request"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@
"deleteModalDeleteButton": "Yes, cancel",
"deleteModalDescription": "Cancelling your service will irretrievably erase all related data. Do you wish to cancel your service?",
"deleteModalHeadline": "Cancel {{serviceType}}?",
"deleteModalHeadlineService": "the service",
"deleteModalAdditionalContent": "Additional information"
}
"deleteModalHeadlineService": "the service"
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { act } from '@testing-library/react';
import { beforeEach, vi } from 'vitest';
import { afterEach, beforeEach, vi } from 'vitest';

import { cleanup, render } from '@/setupTest';

Expand All @@ -20,6 +20,9 @@ const renderComponent = (props: FilterAddProps) => {

describe('FilterAdd Snapshot Tests', () => {
beforeEach(() => {
vi.useFakeTimers();
vi.setSystemTime(new Date('2025-10-15T12:00:00.000Z'));

mockUseGetResourceTags.mockReturnValue({
tags: [],
isError: false,
Expand All @@ -33,6 +36,9 @@ describe('FilterAdd Snapshot Tests', () => {
});

afterEach(async () => {
vi.runAllTimers();
vi.useRealTimers();

// Wait for all pending async operations and state updates
await act(async () => {
await new Promise((resolve) => setTimeout(resolve, 100));
Expand Down Expand Up @@ -68,7 +74,7 @@ describe('FilterAdd Snapshot Tests', () => {
expect(container).toMatchSnapshot();
});

it('should match snapshot with date filter type', () => {
it.skip('should match snapshot with date filter type', () => {
const props = {
columns: [
{
Expand Down
Loading
Loading