1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

Revert "Fix: add the right change"

This reverts commit 9dc64659b7.

Wasn't intended to push to main.
This commit is contained in:
Thomas Heartman 2023-11-21 12:54:45 +01:00
parent 9dc64659b7
commit f8db9098fc
No known key found for this signature in database
GPG Key ID: BD1F880DAED1EE78

View File

@ -100,6 +100,40 @@ const updateStrategyInCr = async (
});
};
describe.each([
[
'updateStrategy',
(segmentId: number) =>
updateStrategyInCr(randomId(), segmentId, FLAG_NAME),
],
[
'addStrategy',
(segmentId: number) => addStrategyToCr(segmentId, FLAG_NAME),
],
])('Should handle %s changes correctly', (_, addOrUpdateStrategy) => {
test.each([
['Draft', true],
['In review', true],
['Scheduled', true],
['Approved', true],
['Rejected', false],
['Cancelled', false],
['Applied', false],
])(
'Changes in %s CRs should make it %s',
async (state, expectedOutcome) => {
await createCR(state);
const segmentId = 3;
await addOrUpdateStrategy(segmentId);
expect(
await readModel.isSegmentUsedInActiveChangeRequests(segmentId),
).toBe(expectedOutcome);
},
);
});
test.each([
['Draft', true],
['In review', true],