Skip to content

Commit 803e180

Browse files
committedJan 14, 2025
fix date string
Signed-off-by: Chenyang Ji <cyji@amazon.com>
1 parent 02e1c64 commit 803e180

File tree

5 files changed

+21
-3
lines changed

5 files changed

+21
-3
lines changed
 

‎.github/workflows/cypress-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104

105105
- name: Sleep until OSD server starts - non-windows
106106
if: ${{ matrix.os != 'windows-latest' }}
107-
run: sleep 450
107+
run: sleep 500
108108
shell: bash
109109

110110
- name: Install Cypress

‎public/pages/QueryDetails/QueryDetails.test.tsx

+9
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,15 @@ const mockQuery = MockQueries()[0];
2525
const mockParams = { hashedQuery: hash(mockQuery) };
2626

2727
describe('QueryDetails component', () => {
28+
beforeAll(() => {
29+
jest.spyOn(Date.prototype, 'toLocaleTimeString').mockImplementation(() => '12:00:00 AM');
30+
jest.spyOn(Date.prototype, 'toDateString').mockImplementation(() => 'Mon Jan 13 2025');
31+
});
32+
33+
afterAll(() => {
34+
jest.resetAllMocks(); // Reset all mocks after all tests
35+
});
36+
2837
beforeEach(() => {
2938
jest.clearAllMocks(); // Clear all mock calls and instances before each test
3039
});

‎public/pages/QueryDetails/__snapshots__/QueryDetails.test.tsx.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ exports[`QueryDetails component renders the QueryDetails page 1`] = `
4444
<div
4545
class="euiText euiText--extraSmall"
4646
>
47-
Sep 12, 2024 @ 3:09:55 PM
47+
Jan 13, 2025 @ 12:00:00 AM
4848
</div>
4949
</div>
5050
<div

‎public/pages/QueryInsights/QueryInsights.test.tsx

+9
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@ const renderQueryInsights = () =>
3737
);
3838

3939
describe('QueryInsights Component', () => {
40+
beforeAll(() => {
41+
jest.spyOn(Date.prototype, 'toLocaleTimeString').mockImplementation(() => '12:00:00 AM');
42+
jest.spyOn(Date.prototype, 'toDateString').mockImplementation(() => 'Mon Jan 13 2025');
43+
});
44+
45+
afterAll(() => {
46+
jest.resetAllMocks(); // Reset all mocks after all tests
47+
});
48+
4049
beforeEach(() => {
4150
jest.clearAllMocks();
4251
});

‎public/pages/QueryInsights/__snapshots__/QueryInsights.test.tsx.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ exports[`QueryInsights Component renders the table with the correct columns and
604604
class="euiLink euiLink--primary"
605605
type="button"
606606
>
607-
Sep 12, 2024 @ 3:09:55 PM
607+
Jan 13, 2025 @ 12:00:00 AM
608608
</button>
609609
</span>
610610
</div>

0 commit comments

Comments
 (0)