-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
- Loading branch information
1 parent
7a16272
commit 5892439
Showing
36 changed files
with
611 additions
and
341 deletions.
There are no files selected for viewing
96 changes: 0 additions & 96 deletions
96
...ndex_lifecycle_management/__jest__/client_integration/edit_policy/edit_policy.helpers.tsx
This file was deleted.
Oops, something went wrong.
42 changes: 0 additions & 42 deletions
42
..._lifecycle_management/__jest__/client_integration/edit_policy/features/cold_phase.test.ts
This file was deleted.
Oops, something went wrong.
36 changes: 36 additions & 0 deletions
36
...cycle_management/__jest__/client_integration/edit_policy/features/delete_phase.helpers.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,36 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import { | ||
createMinAgeActions, | ||
createSavePolicyAction, | ||
createSnapshotPolicyActions, | ||
createTogglePhaseAction, | ||
} from '../../helpers'; | ||
import { initTestBed } from '../init_test_bed'; | ||
|
||
type SetupReturn = ReturnType<typeof setupDeleteTestBed>; | ||
|
||
export type DeleteTestBed = SetupReturn extends Promise<infer U> ? U : SetupReturn; | ||
|
||
export const setupDeleteTestBed = async () => { | ||
const testBed = await initTestBed(); | ||
const { exists } = testBed; | ||
|
||
return { | ||
...testBed, | ||
actions: { | ||
togglePhase: createTogglePhaseAction(testBed), | ||
savePolicy: createSavePolicyAction(testBed), | ||
delete: { | ||
isShown: () => exists('delete-phase'), | ||
...createMinAgeActions(testBed, 'delete'), | ||
...createSnapshotPolicyActions(testBed), | ||
}, | ||
}, | ||
}; | ||
}; |
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
Oops, something went wrong.