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
15 changes: 0 additions & 15 deletions galasa-ui/package-lock.json

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

Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ describe('fetchAllTestRunsByPaging Function', () => {
undefined,
undefined,
undefined,
undefined,
new Date('2023-10-26T00:00:00.000Z'),
new Date('2023-10-27T00:00:00.000Z'),
undefined,
Expand Down
4 changes: 4 additions & 0 deletions galasa-ui/src/utils/testRuns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ interface fetchAllTestRunsByPagingParams {
toDate: Date;
runName?: string;
requestor?: string;
user?: string;
group?: string;
submissionId?: string;
bundle?: string;
Expand All @@ -56,6 +57,7 @@ const getRasApiClient = () => {
* @param {Date} toDate - The end date for fetching runs.
* @param {string} [runName] - The name of the test run to filter by (optional).
* @param {string} [requestor] - The requestor to filter by (optional).
* @param {string} [user] - The user to filter by (optional).
* @param {string} [group] - The group to filter by (optional).
* @param {string} [submissionId] - The submission ID to filter by (optional).
* @param {string} [bundle] - The bundle to filter by (optional).
Expand All @@ -69,6 +71,7 @@ export const fetchAllTestRunsByPaging = async ({
toDate,
runName,
requestor,
user,
group,
submissionId,
bundle,
Expand Down Expand Up @@ -96,6 +99,7 @@ export const fetchAllTestRunsByPaging = async ({
status,
bundle,
requestor,
user,
fromDate,
toDate,
testName,
Expand Down