react-code-dataset / wp-calypso /client /state /selectors /test /get-google-my-business-stats-error.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import getGoogleMyBusinessStatsError from 'calypso/state/selectors/get-google-my-business-stats-error';
describe( 'getGoogleMyBusinessStatsError', () => {
test( 'should return null if no error available', () => {
expect( getGoogleMyBusinessStatsError( {}, 123, 'actions', 'month' ) ).toBeNull();
} );
test( 'should return stats error', () => {
const state = {
googleMyBusiness: {
123: {
location: {
id: null,
},
statsError: {
actions: {
month: {
total: {
interval: 'month',
statType: 'actions',
aggregation: 'total',
data: { hello: 'world' },
},
},
},
},
},
},
};
expect( getGoogleMyBusinessStatsError( state, 123, 'actions', 'month', 'total' ) ).toEqual( {
interval: 'month',
statType: 'actions',
aggregation: 'total',
data: { hello: 'world' },
} );
} );
} );