Skip to content

Commit

Permalink
Skip redux tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JBWatenbergScality committed May 24, 2023
1 parent 70caa7e commit 140760b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/react/actions/__tests__/location.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ import {
} from './utils/testUtil';
import { MockManagementClientWithConfigurationVersions } from '../../../js/mock/managementClient';
const locationObj = LOCATION;
const saveLocationNetworkStart = dispatchAction.NETWORK_START_ACTION(
'Deploying location',
);
const deleteLocationNetworkAction = dispatchAction.NETWORK_START_ACTION(
'Deleting location',
);
describe('location actions', () => {
const saveLocationNetworkStart =
dispatchAction.NETWORK_START_ACTION('Deploying location');
const deleteLocationNetworkAction =
dispatchAction.NETWORK_START_ACTION('Deleting location');
//Skipping those tests as testing implementation details in redux doesn't make sense
//We need to be able to rey on test at component level
describe.skip('location actions', () => {
const locationName = 'loc1';
const syncTests = [
{
Expand Down Expand Up @@ -131,4 +131,4 @@ describe('location actions', () => {
},
];
asyncFullStoreTests.forEach(testDispatchFunctionWithFullStore);
});
});

0 comments on commit 140760b

Please sign in to comment.