by admin | Apr 29, 2025 | 1xbet Morocco
1xbet تسجيل الدخول في المغرب تسجيل الدخول إلى الموقع 1xbet تسجيل الدخول للجوال”Contentوسائل دفع وسحب الأموال 1xbet المغربكيفية الانضمام وتسجيل الدخول في المغرب 1xbetباقة مكافآت موقع 1xbet في المغربإيجابيات 1xbet المغرب للاعبينكيف ألعب على 1xbet موقع؟كيف يتم عرض...
by admin | Apr 28, 2025 | 1xbet Morocco
“تنزيل برنامج 1xbet ️ ما هو تطبيق 1xbet “Contentما هي فوائد تنزيل” “وان اكس بت التطبيق الرسمي لموقع 1xbet؟ميزات الرهانات في تطبيق 1xbet من الهاتفماكينة الرهان المشتركتطبيق 1xbet للآيفون: سبل الاستفادة القصوىكيفية تنزيل تطبيق 1xbet Apk للمراهنات...
by admin | Mar 5, 2025 | 1xbet Morocco
“1xbet App 1xbet Mobile Phone ᐊ تنزيل 1xbet Apk Android و Iphone ᐊ 1xbet ComContentما هو رأي اللاعبين في التطبيق تحليل قرائنادليل تثبيت و تحميل تطبيق 1xbet للأندرويدضع الرهانات على تطبيق الجوال 1xbetBet للـ Ios — كيفية تنزيل التطبيقهل يمكن شحن الرصيد عبر تطبيق...
import { expect } from '@jest/globals';
import { SITE_BACKUP_STORAGE_SET } from '../../actions/types';
import siteBackupStorage from '../site-backup-storage';
describe( 'reducer', () => {
const fixtures = {
initialState: {
usageLevel: null,
addonOfferSlug: null,
},
};
describe( 'siteBackupStorage', () => {
it.each( [
{
state: undefined,
action: {},
expected: fixtures.initialState,
},
{
state: fixtures.initialState,
action: {
type: SITE_BACKUP_STORAGE_SET,
},
expected: fixtures.initialState,
},
{
state: fixtures.initialState,
action: {
type: SITE_BACKUP_STORAGE_SET,
usageLevel: 'Full',
},
expected: {
usageLevel: 'Full',
addonOfferSlug: null,
},
},
{
state: {
usageLevel: 'Full',
addonOfferSlug: 'jetpack_backup_product_t1',
},
action: {
type: SITE_BACKUP_STORAGE_SET,
usageLevel: 'Normal',
},
expected: {
usageLevel: 'Normal',
addonOfferSlug: 'jetpack_backup_product_t1',
},
},
] )( 'should return expected state', ( { state, action, expected } ) => {
expect( siteBackupStorage( state, action ) ).toEqual( expected );
} );
} );
} );