-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(manager-react-components): fix bump ods 18 issues
ref: MANAGER-14622 Signed-off-by: Alex Boungnaseng <[email protected]>
- Loading branch information
1 parent
d8e869f
commit 1401539
Showing
14 changed files
with
71 additions
and
336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...es/manager-react-components/src/components/guides-header/guides-header.component.spec.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 0 additions & 86 deletions
86
...ager-react-components/src/components/templates/delete-modal/delete-service-modal.spec.tsx
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 0 additions & 82 deletions
82
...ager-react-components/src/components/templates/update-name-modal/update-iam-name.spec.tsx
This file was deleted.
Oops, something went wrong.
127 changes: 0 additions & 127 deletions
127
...er-react-components/src/components/templates/update-name-modal/update-name-modal.spec.tsx
This file was deleted.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
packages/manager-react-components/src/enumTypes/playwright.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
export type Handler<T = any> = { | ||
url: string; | ||
response?: T; | ||
headers?: HeadersInit; | ||
statusText?: string; | ||
type?: ResponseType; | ||
responseText?: string; | ||
delay?: number; | ||
method?: | ||
| 'get' | ||
| 'post' | ||
| 'put' | ||
| 'delete' | ||
| 'all' | ||
| 'head' | ||
| 'options' | ||
| 'patch'; | ||
status?: number; | ||
api?: 'v2' | 'v6' | 'aapi' | 'ws'; | ||
baseUrl?: string; | ||
disabled?: boolean; | ||
once?: boolean; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.