From f4c12c698676ae8adc5ba1993d20c9e570af5d17 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 9 Jun 2020 20:08:07 -0500 Subject: [PATCH] Tests: Boilerplate all reducers --- app/soapbox/reducers/__tests__/accounts-test.js | Bin 0 -> 240 bytes .../reducers/__tests__/accounts_counters-test.js | Bin 0 -> 258 bytes app/soapbox/reducers/__tests__/alerts-test.js | Bin 0 -> 239 bytes app/soapbox/reducers/__tests__/compose-test.js | Bin 0 -> 744 bytes app/soapbox/reducers/__tests__/contexts-test.js | Bin 0 -> 312 bytes .../reducers/__tests__/conversations-test.js | Bin 0 -> 377 bytes .../reducers/__tests__/custom_emojis-test.js | Bin 0 -> 253 bytes .../reducers/__tests__/domain_lists-test.js | Bin 0 -> 367 bytes .../reducers/__tests__/dropdown_menu-test.js | Bin 0 -> 323 bytes app/soapbox/reducers/__tests__/filters-test.js | Bin 0 -> 241 bytes .../reducers/__tests__/group_editor-test.js | Bin 0 -> 391 bytes .../reducers/__tests__/group_lists-test.js | Bin 0 -> 370 bytes .../__tests__/group_relationships-test.js | Bin 0 -> 262 bytes app/soapbox/reducers/__tests__/groups-test.js | Bin 0 -> 236 bytes .../reducers/__tests__/height_cache-test.js | Bin 0 -> 248 bytes .../reducers/__tests__/identity_proofs-test.js | Bin 0 -> 254 bytes app/soapbox/reducers/__tests__/instance-test.js | Bin 0 -> 434 bytes app/soapbox/reducers/__tests__/list_adder-test.js | Bin 0 -> 417 bytes .../reducers/__tests__/list_editor-test.js | Bin 0 -> 583 bytes app/soapbox/reducers/__tests__/lists-test.js | Bin 0 -> 234 bytes app/soapbox/reducers/__tests__/me-test.js | Bin 0 -> 169 bytes .../reducers/__tests__/media_attachments.js | Bin 0 -> 645 bytes app/soapbox/reducers/__tests__/meta-test.js | Bin 0 -> 232 bytes app/soapbox/reducers/__tests__/modal-test.js | Bin 0 -> 223 bytes app/soapbox/reducers/__tests__/mutes-test.js | Bin 0 -> 358 bytes .../reducers/__tests__/notifications-test.js | Bin 0 -> 494 bytes app/soapbox/reducers/__tests__/patron-test.js | Bin 0 -> 236 bytes app/soapbox/reducers/__tests__/polls-test.js | Bin 0 -> 234 bytes .../reducers/__tests__/push_notifications-test.js | Bin 0 -> 509 bytes .../reducers/__tests__/relationships-test.js | Bin 0 -> 250 bytes app/soapbox/reducers/__tests__/reports-test.js | Bin 0 -> 460 bytes app/soapbox/reducers/__tests__/search-test.js | Bin 0 -> 336 bytes app/soapbox/reducers/__tests__/settings-test.js | Bin 0 -> 266 bytes app/soapbox/reducers/__tests__/sidebar-test.js | Bin 0 -> 177 bytes app/soapbox/reducers/__tests__/soapbox-test.js | Bin 0 -> 238 bytes .../reducers/__tests__/status_lists-test.js | Bin 0 -> 508 bytes app/soapbox/reducers/__tests__/statuses-test.js | Bin 0 -> 240 bytes .../reducers/__tests__/suggestions-test.js | Bin 0 -> 330 bytes app/soapbox/reducers/__tests__/timelines-test.js | Bin 0 -> 242 bytes app/soapbox/reducers/__tests__/trends-test.js | Bin 0 -> 320 bytes app/soapbox/reducers/__tests__/user_lists-test.js | Bin 0 -> 565 bytes 41 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 app/soapbox/reducers/__tests__/accounts-test.js create mode 100644 app/soapbox/reducers/__tests__/accounts_counters-test.js create mode 100644 app/soapbox/reducers/__tests__/alerts-test.js create mode 100644 app/soapbox/reducers/__tests__/compose-test.js create mode 100644 app/soapbox/reducers/__tests__/contexts-test.js create mode 100644 app/soapbox/reducers/__tests__/conversations-test.js create mode 100644 app/soapbox/reducers/__tests__/custom_emojis-test.js create mode 100644 app/soapbox/reducers/__tests__/domain_lists-test.js create mode 100644 app/soapbox/reducers/__tests__/dropdown_menu-test.js create mode 100644 app/soapbox/reducers/__tests__/filters-test.js create mode 100644 app/soapbox/reducers/__tests__/group_editor-test.js create mode 100644 app/soapbox/reducers/__tests__/group_lists-test.js create mode 100644 app/soapbox/reducers/__tests__/group_relationships-test.js create mode 100644 app/soapbox/reducers/__tests__/groups-test.js create mode 100644 app/soapbox/reducers/__tests__/height_cache-test.js create mode 100644 app/soapbox/reducers/__tests__/identity_proofs-test.js create mode 100644 app/soapbox/reducers/__tests__/instance-test.js create mode 100644 app/soapbox/reducers/__tests__/list_adder-test.js create mode 100644 app/soapbox/reducers/__tests__/list_editor-test.js create mode 100644 app/soapbox/reducers/__tests__/lists-test.js create mode 100644 app/soapbox/reducers/__tests__/me-test.js create mode 100644 app/soapbox/reducers/__tests__/media_attachments.js create mode 100644 app/soapbox/reducers/__tests__/meta-test.js create mode 100644 app/soapbox/reducers/__tests__/modal-test.js create mode 100644 app/soapbox/reducers/__tests__/mutes-test.js create mode 100644 app/soapbox/reducers/__tests__/notifications-test.js create mode 100644 app/soapbox/reducers/__tests__/patron-test.js create mode 100644 app/soapbox/reducers/__tests__/polls-test.js create mode 100644 app/soapbox/reducers/__tests__/push_notifications-test.js create mode 100644 app/soapbox/reducers/__tests__/relationships-test.js create mode 100644 app/soapbox/reducers/__tests__/reports-test.js create mode 100644 app/soapbox/reducers/__tests__/search-test.js create mode 100644 app/soapbox/reducers/__tests__/settings-test.js create mode 100644 app/soapbox/reducers/__tests__/sidebar-test.js create mode 100644 app/soapbox/reducers/__tests__/soapbox-test.js create mode 100644 app/soapbox/reducers/__tests__/status_lists-test.js create mode 100644 app/soapbox/reducers/__tests__/statuses-test.js create mode 100644 app/soapbox/reducers/__tests__/suggestions-test.js create mode 100644 app/soapbox/reducers/__tests__/timelines-test.js create mode 100644 app/soapbox/reducers/__tests__/trends-test.js create mode 100644 app/soapbox/reducers/__tests__/user_lists-test.js diff --git a/app/soapbox/reducers/__tests__/accounts-test.js b/app/soapbox/reducers/__tests__/accounts-test.js new file mode 100644 index 0000000000000000000000000000000000000000..c85c998f0b36348b662040dd4dbed0ba08ca06f5 GIT binary patch literal 240 zcmY*TK?;K~5WM?}xg`Oy50LiOLl1pKOjcab#3makh<~qAh4!!myEC&hJk2o)68YjN zp-*vwYMP66E|wr!wH1FQ3!Zj{&3H^x5!;Ql@9SaV^SBu*PuV5zNUQVB8K7!tgX;}T z1+Zw9hge3x(Na=?3DmkfTRYnngt2$G{tOfkNl5bj@i@gKNaTy7 zgg(U)s%^K{xmbea%WF`|YS-`^JL7C8*o@OS7O~wx&wcrDc|BG_<0-qu9clHaw_2(V zw88#>xdB+T%GX#1U*A$vfLsY2SlAB8VugP20Np2YqCfd{37&cmRj;M?XFULa&sL}a literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/alerts-test.js b/app/soapbox/reducers/__tests__/alerts-test.js new file mode 100644 index 0000000000000000000000000000000000000000..988859d8a4f6850e83707e5577e8a26423f977d8 GIT binary patch literal 239 zcmY*TF%E+;5Zif$w?oHl4R9Zyc-rgISXvYW15QC&eKm=j|l(OEmAqked3O^+H3yxs)jbW-mp{v zi&lAz#k=h+B?ZVx;K0JxBa0O}`2l**)Qdj0>Jl6c9LUvJR%058_gArAp9X4U+U?o8 G@fRNz8cx&z literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/compose-test.js b/app/soapbox/reducers/__tests__/compose-test.js new file mode 100644 index 0000000000000000000000000000000000000000..9c13c3e71e8bf42ae9a82668ba3b8728076f0915 GIT binary patch literal 744 zcmZ`%!Ait15WVkL%q=Y}tLH9y@*s*RcoZpVGTV-(Nk}HkF3bMADZ5>5)j(5t?|VSr6=J&4unO1Vr#6zj!8V^o0}EW{Zc)nW-n2{*TJSO5?gB6cnrooPv0SlxcrD7||0G#;&&|gm9x4s1cgZs9 z3a*!DB%+PE))p(+NE7jbdq)Pt-)POa;|hcr)jrTxs(l4E88d=&(Z;D1@3Nt(Ov!Bg z#SL9JJEh3h0lnGR>}Eu)Poa`+XDw2!V`_S0{*zOkv~6bUw{|p z#`q(<9yQ5YGE3F+l1q&MDM*si- literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/contexts-test.js b/app/soapbox/reducers/__tests__/contexts-test.js new file mode 100644 index 0000000000000000000000000000000000000000..3130f2e5306ee7967e14d31e96eab4e2a46a4c91 GIT binary patch literal 312 zcmZ`!v8ux`4BYb-x7mS^?yt04hYnpzf544ZDsb%7mLZRje}4`yfp(}s0_je=6Zb=i zf=D)Z6!D0mhicnh7rf9YN$o5Cr%bq*0Vd(x_gT!{(bCWB3U9-*P+3Y{m&K6j5^pGckJqsI$Bu40i570PJCwg_Ov$ynMPqx7{*L5r5^vcHR kcZYgWT7vzR2KRdl>F47GT{kNu7M$q|T<-4+Z!UGoKSj!9fdBvi literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/conversations-test.js b/app/soapbox/reducers/__tests__/conversations-test.js new file mode 100644 index 0000000000000000000000000000000000000000..4df9d832279f304ceb8d21fcc7e22864d795b457 GIT binary patch literal 377 zcmY*U%WA_w47~d*bn_aFb9ZQOJrt6UP`q+2*oV8)mV)uWXPw4vEs#K?VMfD#j!7Yr z%>yMEQ}j@G-D!y7i;|#n3{syf{^2cf#TiiG-TSO~b5!;gE-ZRLAHe#Q*B&$boDN z%i1)Z#<$Om&iw!0Y))ITl9&E3*_OdH?S7R@M9bl$hY_97j!!7pn5YL$`4{vt2PJ!; M7XNe6TFcz}4x*WPL;wH) literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/custom_emojis-test.js b/app/soapbox/reducers/__tests__/custom_emojis-test.js new file mode 100644 index 0000000000000000000000000000000000000000..17cd1248f91884a6c633dc0f78760754d2a8e305 GIT binary patch literal 253 zcmY*TOA3Q95Z!xEq8V|DF*cb%LA-lys|y!z7H{5<{S=}glFKbc zbTN3SsyekfN$?Ny;mJwW1^;z3?wkZR;pTl7+YIz0md(jKyIKlIsg2x_R)@5`OqI|E z=L_ZnV9_e|ArEeSOO7L?C-BI^c0dvMI-=qIIb=z$c%T`sdb8Rj4UGEQU C1a{{D literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/dropdown_menu-test.js b/app/soapbox/reducers/__tests__/dropdown_menu-test.js new file mode 100644 index 0000000000000000000000000000000000000000..c618adf5246cc1b7bfb9fcb007b1f8f6e49f2ec8 GIT binary patch literal 323 zcmY*U%WA|h47}$n=4J;%dhgQSde}q1p(wG!n)+2+rY#}=UWd&>BalF&8I5Fpidm4^ z)R{Au96i)HKA9YoiQnPFbExXl**kB=J0(!T)%z+mIo|v2(Afvr1fAhBXFIW0r(F*# zH9+@xdBxfRR&OiawtN=CqBSGiD%Kr-MR+Diw$fBtXtoY65qZm vIsN}ky*up@6NjsLMySpW2bLVo+ylq}<30xx#mLGq^O_*6N;rMnh+! literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/filters-test.js b/app/soapbox/reducers/__tests__/filters-test.js new file mode 100644 index 0000000000000000000000000000000000000000..1d0eab2507a3c60cba1dc7f67c056448a0be9181 GIT binary patch literal 241 zcmY*TOA3Q95Z!xfh*kl3)@$OAqUATC&c=LWdEg=dbx!hC4 z5W@u3G?#(BP)w?=_^(*;$cJ5N7i+dX`+#Zoy+edLa`+H;NqRYMzGZ&)jU zMXNN1>|J?Fjx%H=@XW&2BZ(C{=>d8#)QjHN>O4CdcqUh4-Hd4@++W#xeOjoEX-nBw G?iU~02T!m7 literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/group_editor-test.js b/app/soapbox/reducers/__tests__/group_editor-test.js new file mode 100644 index 0000000000000000000000000000000000000000..2008d6fd90299df71ebbcf779366416cec3987a9 GIT binary patch literal 391 zcmY*U%Wi})47~Fdz9mSA-dVMmss|1|^#iIv3|Pv8O`O$Ah<|VBf|j*pOBv5(#$;z7 z7y|0lV}K!e3!<*y#^BTZi<;O6aVh9QTi{#Gpdz%^CRUxn?Y-_YI>0O_G{!zqhfakrm?$9{}$&_AK|*GC7R{In)&_YgyLp zzphCcc}^)er>*|uw7LP8jHz~z;!o-)%W;;h4h>(Z1)pYy$$0m^h#4H!xx+`L9=89BbvNTHTYVZ! zc}zTzR(Ao{bk#w(cspWg02ZzCITmNDEF}fVnZSXCjYAeA^uPo3JJTq7ucAw^G;tu? zVOiU@mw5Uq#_9XN>n&+J6PcPp_Vre6E1}zN2R!+K(o@-3&*6z$!w=PEt?zdK04L^m A+yDRo literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/group_relationships-test.js b/app/soapbox/reducers/__tests__/group_relationships-test.js new file mode 100644 index 0000000000000000000000000000000000000000..d0fead807f2f45b5416c6921bfe5160f15ae101b GIT binary patch literal 262 zcmZusK?=e!5WM#lb4vnJA0T@3;K4UYY*xFFCNbH7Q2KW(wxHl)2X<#>XP1W*vmleJ z9cA2d9H82Ed(W|^OD1oHV<kPV;qy%W}t0f4*{RYEGQhsHgH2)?Ix$WDxnRoH!KCf zqE+mD8eD!$3KOI!@WjG)Kol$V#|P*$Q!Dyts?+4Cz H8MpZY1C>pL literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/height_cache-test.js b/app/soapbox/reducers/__tests__/height_cache-test.js new file mode 100644 index 0000000000000000000000000000000000000000..4873509e5450437d04f564eefee0f051a7513562 GIT binary patch literal 248 zcmY*T%L>CV47>L$bV~xG`+&0DcGzLxFw(?b41FzeU{Lz+Ygr53!2(;7CGN%{3L^RJ zD58l&2UV8mK>P~wbk+q@Rlz^mgohnr6YgD?#nvsY`@GqBKQ4yCQ*x1O((3qX4^k&+ zgUc0D0kCM5!jN0P(2`>h2?Xw0*tSSwh5qyaeMWMkx7IrMo*M4SpD@kFlrr4j*|z%F NQX5k(S@VMHd;u8eQQQCk literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/identity_proofs-test.js b/app/soapbox/reducers/__tests__/identity_proofs-test.js new file mode 100644 index 0000000000000000000000000000000000000000..d4d159847848cc7092de3d7892290105c09fc780 GIT binary patch literal 254 zcmZ8bK?;K~5WM?}xg`Oy50LiOLl1pJiDsn>n%HCmE#lv+RH5x*2X<#>XLuMx6hv~l zrHC$u0jjDF?8pnt>o&#^x}@rYKgtPLJHjShh9Qe>dRq5+bMk&%427fAMs7%}zi)e- zDxnRICrkyvqE)(w+`EOA96jVtV9&y~M-nUaqX+0YQY(7vuCsU4u_sqznvJO>oFCct P`n#w$re3n<1=o24?Ojy} literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/instance-test.js b/app/soapbox/reducers/__tests__/instance-test.js new file mode 100644 index 0000000000000000000000000000000000000000..cba12c648b9519df594effe84a3db2b9b377149d GIT binary patch literal 434 zcmZus&5DCC5Wf2qb2Eat#cjK^rM>N85Bm&~CQ}^9j~gdY5Z`?xD(gZ63Cw)IA=~-D z5Ku>j0Up6y$gAp&T+h-e%r6cm-+N=S2 z38H}O4TcPWSmb@{qtOZG7#whmK#rKCft1hqj}L&)4i$@~t%y$JgB<=4Kg;drxR@Jp|HkD2lai7G%klR!}hh_e!nO#1%-OdF?FEiw}Z8 zCXEy@1wW%5h9}EW-nB6l+GE4Nq7`p?fsQ!Ma}s^Al>a@>S-L}ifURcnO`CHXLvajz zA=TdVZ?oGTs>AaO)&^ivZM^zqO{OIU2e}g1v9Pv?qJ?&PfW8(QMb$-Aa)u^$WO}Sy z*A3!dKa;lVvAQag%F*NKlarGKeA%g%{hADGXi;HG7b_O#tj|-zb@Fbo?Fq` zTRf3R+rV|I>m7%ek8GS?d)Gy&tm5WiTkzSrW{y#M%iT!KPI(wGF$KTo dmmgcHe;Su(!?!{FXQ=QOq)c=#mr2gDzX5b)uh#$o literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/lists-test.js b/app/soapbox/reducers/__tests__/lists-test.js new file mode 100644 index 0000000000000000000000000000000000000000..52a7d28f0d537415bd9fa7d91f346f58ce1e8006 GIT binary patch literal 234 zcmY*TK?;K~5WM?}xg`Oy50LiOLl1pKG%H<5)FvA!h<|Tv723lN?9A-!aG0kkh~#ol z5ks5;RMVV1CrPTU_^U6t+Zi_D7D5)=dD`}M_wzxPgUV6rBX^|LC*z1#HMGI`f~5jj zv`UXDdsk%1afCbwJhHI$NMeQl`~baX>P7E8bsilJJd&%itj07lU7y){{aa5P)0SUr G!EN3?>`bBn literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/me-test.js b/app/soapbox/reducers/__tests__/me-test.js new file mode 100644 index 0000000000000000000000000000000000000000..2c434dca407ee71806491c4885408ac1f4f67acd GIT binary patch literal 169 zcmY+7I|{=v5Cwam;&qb1CMT$4g8yHS|se($Od#YG# zNl?~a5~*dH0ySUxL0TpHIckPBxZZF~0E<>_D?NsBORpKS5jeB3i)iA6{(OL5J9*LH dpzb-)%9+B9<21%fxj(y$I`V;=5QX7wJI;crqrk+;^CC1J4w=pg&-o zkEB~|I%lOZsGjyHs(;tqoKy{n8txxpSOE}=Dx6&GbXw-vTi_D{Sz?kM1eT0NJpg`s zR4nFLB3g|HvZxyv#=2g!d%Q&1iN6WNbko$NQs{Z7oaGdJ$6p@9-EY__mUx|OAwAaF zAFHO&SORZLeWXLN;RE-62}}Wu-;{cDEww8&8F|F^>`Nb+F3e=OaFpTF)|E86HqpXc drVE1^ULvV?CX+sAexA2F&(a@k6B^Sv^>5wcvb6vJ literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/meta-test.js b/app/soapbox/reducers/__tests__/meta-test.js new file mode 100644 index 0000000000000000000000000000000000000000..59542cba5392b23522928933461b913e56eaad9a GIT binary patch literal 232 zcmY*TK?;K~5WM?}xg`Oy50LiOLl1pKG%GG7(Z&rF#J@LEh4!!mJ2N{w9Ofwr61m({ z!jPr_)ijqtVpUu5S6=b7Gwgy#2w80BY2UZQ&L>$8Do0D7xFfChh%;E#&<58V)(T+J zY8j{OU6CcH2pI_+S=f3kVuk+v0KI4GMISA7j*bS7n&UDFtcX* z^8@sV)U*85%Ipmd)|08RtV%T;&iAaHEa7GL>gzL73!j~jgUF%~wTFj`n#w{Cr#1Kw~MJ#1pCZx8qjb_D~(3 zU$8a+i)!;F7H6w0B?ZWZz=4IeLl!Oc;0Ne?AtUPGR3%uNIgstKZe2G>eElrissDIt z|7kygzQzaeyHZK=xlEo#IDCwlwae5WF+dv=OOO$vIQO>>QFvyfg=5GgB$az+>#nxS LbgDI5efRqVm%48( literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/notifications-test.js b/app/soapbox/reducers/__tests__/notifications-test.js new file mode 100644 index 0000000000000000000000000000000000000000..b736480262158f8463f6f8fdb13835a1fb9ac28f GIT binary patch literal 494 zcmZ{g!Ait15Qgvj6mx3|wd%EtUc`g2E9e`{Hd8y0Cf#HLLg~Ak?zY-01`^0Wf99J% z-1W{2c+#;Z4~=&nWMz44op8f73OgIJ{f@7`0gl)M26*YZD0niI?gbn;$VR;gDTo)|H~F9Xx{!lcyiIoie)g!`vre;yaGIgVLu>uKB9L%`>;2r5T&m$)UZc9YXwU7!tacPtga zqSZXa>|J?FP609yIIytwn8gbH@d5fw)QLWt>Kq*P9LQa;tj5$5AMb3v{_UrYX-d{w GaGNjlJWXr> literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/polls-test.js b/app/soapbox/reducers/__tests__/polls-test.js new file mode 100644 index 0000000000000000000000000000000000000000..d78698b932c06dcf28bb509f21f992541327de36 GIT binary patch literal 234 zcmY*TK?;K~5WM?}xg`Oy50LiOLl1pKG%H<*#wHsmh<|Tv723lN?9A-!@HmGkh~#ol z5km|kRMVX1;C)hU#b15F-OjKHw{gs3J5Srb?tVVVa!@%+edLa``eYo@s)jZ=U$9gF zi&p6ovUf$694E+wz!M8wk0e&;&kxXRre5^kQ|HOiz!SL|%W6y`;rh(h>)(3Xn6~^{ H3vTlUI802K literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/push_notifications-test.js b/app/soapbox/reducers/__tests__/push_notifications-test.js new file mode 100644 index 0000000000000000000000000000000000000000..7c47f4dd75ee3bc1fa62c685f93c7541c4be2ca6 GIT binary patch literal 509 zcmZWm!ES{h5WM>pdlM65@9(9(_0U64?*kf?wQhnyVW~}w|6YjNR3(9gotd2-pwU^+ z;8Dd6J@np=P&Unzi(&XMmZ_&sGFcPKdqFFChIi>e26!9C$gVQhM5C}LgQ|vk zsj7zU>sORo{GU~1r@TUJ^L#D`yn%^Y*Bc@=dJd_E(;?=c6ri_S+vx_q)B$&0D$8#h zJuzMokFBO^Y2odWttbopx!V0w^y3b>>*?_ZT@ Bo^k*H literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/relationships-test.js b/app/soapbox/reducers/__tests__/relationships-test.js new file mode 100644 index 0000000000000000000000000000000000000000..3d74e5077b30b1db17bce56bfb0b619efa785d98 GIT binary patch literal 250 zcmY*TK?;K~5WM?}xg~*OA0X|mhaUQfXjWW^iA^?85dU7K3iYr9yEC&hJWeqQ61mb* zLZ9LYRoB-<-U`Q%2cEKOD*owayzB&<@f^n@w)M2_%kJajxEd-)xl7!VR;OP_l)6A0 z-0qkwfJLi3#NypbOGyDT5IC@~^~hp{PI`bo6Lq5Z-ns-wJqL0Z%!@I##K*f>um5Xm LW12Nj0Zgc{>-RZZVSll4Nm0Ibg-;# z+jDsR&dSRB)Ur;h$K!Q4?DNl*BCU-)ifng{4$h(H0fgAWDa5Oa#qVL%XoLQGK-bNzEO;uJ*7DZ-3$`MRp8x;= literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/search-test.js b/app/soapbox/reducers/__tests__/search-test.js new file mode 100644 index 0000000000000000000000000000000000000000..fb74f1473b9e5e041b775d56de7ebb91ac9091fa GIT binary patch literal 336 zcmZ8c!HR@1488jm@74<9-W_&tbC|=&^$R(~C=o+72 zSSx^~jHfv}TgH-OfJ_7qENmQ-7@@a)fPNMlM4y-H94w6-$TnEFx^88@zp`=q?|piA w+T+`}OdXVJP9Wvpvk2J^qj8BYd}3=U`~xGU>?Cz>zw7$o6z^LR-Adi_7pJUf(EtDd literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/settings-test.js b/app/soapbox/reducers/__tests__/settings-test.js new file mode 100644 index 0000000000000000000000000000000000000000..897dfb5565b9bd343cedd299429d58e0d0afbb8d GIT binary patch literal 266 zcmY*T!485j488Le@5V?7-X(hT;K7d=tVk0WxOK*a@b7L4i8g7|zP{I29_Psk9GTFP zL+7Ruc~u=eiLkx?GrVp^6hg61B$%bF zuzi2qIno%!4#q^!HwnhLSZSI}j6_Ov-}z?v1;;)dy%GA({E+|1-nG z=z}1TNgW0B!4D{#<|T@j6u&G-iRG!_2R7lXN9c%;VMwAcmh!vCXQmF(dthGGcw@6p zVJLQiFQm%7!{%SsP!(R^FcknxhORzYlhcxdgIo#hSXf&u<#gZyx{cI{TANYH8S2@Q zsWHt})rf!pPTH#d=hfo0tX}{46j&&>hwh#L;OHhTT(Y)aiva7jA=Bn^8|g2cb%wpr cG7wd5`T2Pp+3m4B&HwbvLpbH1&-q;TFXjoGKmY&$ literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/statuses-test.js b/app/soapbox/reducers/__tests__/statuses-test.js new file mode 100644 index 0000000000000000000000000000000000000000..00687224a1a37251a2e755d168f28de6cec78ced GIT binary patch literal 240 zcmY+8K?;K~5JmT%;_s4x*aJwr>!OPuBAO8gqOr*Y3gX=xsY1J$ftmSl{^w~4Q4q=H zo+5@ACa9*lB(ahcCDm5^m8^K$1vcR^O<8Q`X`iw88a; zwE|d*U<}#2a+Vxt$VlLsg{{Yq(w`on_d>nsBdyM}qk(5~HP+3TM#BA-t=GQ^wJ~k+ I+DhN+1ByIPJOBUy literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/suggestions-test.js b/app/soapbox/reducers/__tests__/suggestions-test.js new file mode 100644 index 0000000000000000000000000000000000000000..60a7b22a174f6ede4e4a20a577cd1d779d72a052 GIT binary patch literal 330 zcmY+9!D_=W5Jd0(in&<^|;j5(;Sl` zk;^?L3@J{iyY55sIFcyGAoa202esgAXIR0{G-b6HPi1a#V$nDCF04;8-r3?)Ig&o{ zg-rbtu&388OoPuaEET|7m}|`5m9^#+pjQG1R<<6ZR_Tog=x?T8&9jQh!O_5hT#IFG vnoi^QZ?@jN{@rXz+hL_i4*$Kj2BvBEt(>BD9L56%>xCYAF+CPwE$?=3^qXsF literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/timelines-test.js b/app/soapbox/reducers/__tests__/timelines-test.js new file mode 100644 index 0000000000000000000000000000000000000000..0bf748dc71f528d2575bc618cd1e7261f80d3700 GIT binary patch literal 242 zcmY+8F$%*l3`O^x;%~Mgqz4G?)}ccW;lv6R*hy;3Pzbqu9h#JOkU-M^`j5jrML{H& zdx{w16rh^sBpk@|NJ+I7e>4m3c7{#3g^mY^$Q^0*{c}X98rtA| z!BPP%TBXO7y(?$QafCbwJhHI$NMeQl^Z>nP>P7FoI**Qqg6V23t1*pC*Jrj~{~~H* K+LE=FzSSEegHPB1 literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/trends-test.js b/app/soapbox/reducers/__tests__/trends-test.js new file mode 100644 index 0000000000000000000000000000000000000000..9c14da46bdd70ce54ecfd4adb6241f6dbb70a808 GIT binary patch literal 320 zcmY*U%ZkG=47}$n=4J;%dT;68_OQ@?gc~cZz>lmgLm}kf*V#1eRv>|9hS7-q6q6v4 zEdwQtDSD{BKS-irvpO}r31(c)1e5XQeGzkWRQC=S&hm!-0?W&XcWw1)Eaf5bjkMal z_nWGNZgKv=+yE?EeR$595kOzSS3mbj#f~AoI*$(s4w!Os9 s?_!+(A6u`N)?y)_kAE+%;dR^XY`#QeIoyvJjmxy*)$~*aOPy=~0Inft5&!@I literal 0 HcmV?d00001 diff --git a/app/soapbox/reducers/__tests__/user_lists-test.js b/app/soapbox/reducers/__tests__/user_lists-test.js new file mode 100644 index 0000000000000000000000000000000000000000..feaaca3e67e15df4cd2a9ff500fc73e7b9505a62 GIT binary patch literal 565 zcmah`!A`^=5WVkL%&jzO>fMdrJb3UM8Vb|yL<-$uST#-mU8=j$9#9fUhWBRP<3ZCL zSb)(cgA4_JWl@l&$fIpwS?ju$ z@N`bvsox&ernIdgI2YcK*t;-}XuJNS#2NG@BqsTr^kt=EJSWU4 pmu6)(^IAmnH((JQIi&d?H0w{{l8tI(Lh>aaIoM-PXwB!gKLJ{twI=`o literal 0 HcmV?d00001