Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { isFetchingAccountRecoverySettings } from '../selectors';
describe( '#account-recovery selector isFetchingAccountRecoverySettings:', () => {
test( 'should return the field isFetchingSettings.', () => {
const state = {
accountRecovery: {
isFetchingSettings: true,
},
};
expect( isFetchingAccountRecoverySettings( state ) ).toBe( true );
} );
} );