Skip to content

Commit

Permalink
reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
jenny-s51 committed Jan 8, 2025
1 parent c629ee8 commit 23fb1b1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions frontend/src/__tests__/cypress/cypress/support/commands/odh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,11 @@ type Options = { path?: Replacement; query?: Query; times?: number } | null;
declare global {
namespace Cypress {
interface Chainable {
interceptOdh: ((
type: 'POST /api/accelerator-profiles',
response?: OdhResponse,
) => Cypress.Chainable<null>) &
interceptOdh: ((type: 'GET /oauth/sign_out') => Cypress.Chainable<null>) &
((
type: 'POST /api/accelerator-profiles',
response?: OdhResponse,
) => Cypress.Chainable<null>) &
((
type: 'DELETE /api/accelerator-profiles/:name',
options: { path: { name: string } },
Expand Down Expand Up @@ -747,8 +748,7 @@ declare global {
path: { serviceName: string; apiVersion: string; modelVersionId: string };
},
response: OdhResponse<ModelVersion>,
) => Cypress.Chainable<null>) &
((type: 'GET /oauth/sign_out') => Cypress.Chainable<null>);
) => Cypress.Chainable<null>);
}
}
}
Expand Down

0 comments on commit 23fb1b1

Please sign in to comment.