Skip to content

Commit

Permalink
Merge branch 'opendatahub-io:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
yzhao583 authored Jun 18, 2024
2 parents 1d7b620 + 92634bb commit 6943fc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
directory: ./frontend/coverage
verbose: true
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: cypress-results
path: ./frontend/src/__tests__/cypress/results/
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,13 @@ import { RecurringRunStatus, StorageStateKF } from '~/concepts/pipelines/kfTypes

const projectName = 'test-project-name';
const initialMockPipeline = buildMockPipelineV2({ display_name: 'Test pipeline' });
const currentTime = new Date();
currentTime.setMonth(currentTime.getMonth() - 3);
const mockExperiments = [
buildMockExperimentKF({
display_name: 'Test experiment 1',
experiment_id: '1',
last_run_created_at: '2024-02-31T15:46:33Z',
last_run_created_at: currentTime.toISOString(),
}),
buildMockExperimentKF({
display_name: 'Test experiment 2',
Expand Down

0 comments on commit 6943fc4

Please sign in to comment.