Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { isDomainUpsellDialogShown } from '../selectors';
describe( 'WpcomPlansUI selectors', () => {
describe( 'isDomainUpsellDialogShown', () => {
it( 'should retrieve the domain upsell dialog visibility', () => {
const state = {
showDomainUpsellDialog: true,
};
expect( isDomainUpsellDialogShown( state ) ).toBe( true );
} );
it( 'should retrieve false if domain upsell dialog visibility is undefined', () => {
const state = {};
expect( isDomainUpsellDialogShown( state ) ).toBe( false );
} );
} );
} );