Skip to content

Commit

Permalink
feat(27254): remove unneeed api response
Browse files Browse the repository at this point in the history
  • Loading branch information
DDDDDanica committed Nov 28, 2024
1 parent 0a0a118 commit 791fd6f
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,18 +185,10 @@ describe('RemoteFeatureFlagController', () => {
const fetchSpy = jest
.fn()
.mockResolvedValueOnce({
error: false,
message: 'Success',
statusCode: '200',
statusText: 'OK',
remoteFeatureFlags: MOCK_FLAGS,
cacheTimestamp: Date.now(),
})
.mockResolvedValueOnce({
error: false,
message: 'Success',
statusCode: '200',
statusText: 'OK',
remoteFeatureFlags: MOCK_FLAGS_TWO,
cacheTimestamp: Date.now(),
});
Expand Down

0 comments on commit 791fd6f

Please sign in to comment.