From 73df0ab939e185bf02d168486946141627874891 Mon Sep 17 00:00:00 2001 From: tiffanyvu Date: Wed, 18 Dec 2024 15:35:26 -0800 Subject: [PATCH 1/5] feat(pkg-details): Package detail error redirect (#947) * wip package detail error redirect * hm.. * add deleted property to Document type instead of each indiv schema * delete old code * Update react-app/src/features/package/index.tsx Co-authored-by: asharonbaltazar <58940073+asharonbaltazar@users.noreply.github.com> * forgot * why * try reverting useloaderdata type * fix import * update error msg --------- Co-authored-by: asharonbaltazar <58940073+asharonbaltazar@users.noreply.github.com> --- .../shared-types/opensearch/main/index.ts | 1 + react-app/src/features/package/index.tsx | 36 ++++++++++++++----- react-app/src/router.tsx | 6 +++- 3 files changed, 34 insertions(+), 9 deletions(-) diff --git a/lib/packages/shared-types/opensearch/main/index.ts b/lib/packages/shared-types/opensearch/main/index.ts index 7e54f3bee3..672d7945b0 100644 --- a/lib/packages/shared-types/opensearch/main/index.ts +++ b/lib/packages/shared-types/opensearch/main/index.ts @@ -62,6 +62,7 @@ export type Document = AppkDocument & makoChangedDate: string; changelog?: Changelog[]; appkChildren?: Omit[]; + deleted?: boolean; }; export type Response = Res; diff --git a/react-app/src/features/package/index.tsx b/react-app/src/features/package/index.tsx index 880b5763f3..b90747133f 100644 --- a/react-app/src/features/package/index.tsx +++ b/react-app/src/features/package/index.tsx @@ -1,6 +1,6 @@ import { CardWithTopBorder, ErrorAlert, LoadingSpinner } from "@/components"; -import { useGetItem, useGetItemCache } from "@/api"; +import { useGetItem, useGetItemCache, getItem } from "@/api"; import { BreadCrumbs } from "@/components/BreadCrumb"; import { FC, PropsWithChildren } from "react"; @@ -12,7 +12,7 @@ import { PackageStatusCard } from "./package-status"; import { PackageActionsCard } from "./package-actions"; import { useDetailsSidebarLinks } from "./hooks"; import { Authority } from "shared-types"; -import { Navigate, useParams } from "react-router"; +import { LoaderFunctionArgs, useParams, useLoaderData, redirect } from "react-router"; import { detailsAndActionsCrumbs } from "@/utils"; export const DetailCardWrapper = ({ @@ -51,16 +51,36 @@ export const DetailsContent: FC<{ id: string }> = ({ id }) => { ); }; -export const Details = () => { - const { id, authority } = useParams<{ - id: string; - authority: Authority; - }>(); +type LoaderData = { + id: string; + authority: Authority; +}; +export const packageDetailsLoader = async ({ params }: LoaderFunctionArgs): Promise => { + const { id, authority } = params; if (id === undefined || authority === undefined) { - return ; + return redirect("/dashboard"); + } + + try { + const packageResult = await getItem(id); + if (!packageResult || packageResult?._source?.deleted === true) { + return redirect("/dashboard"); + } + } catch (error) { + if (error instanceof Error) { + console.log("Error fetching package: ", error.message); + } else { + console.log("Unknown error fetching package: ", error); + } + return redirect("/dashboard"); } + return { id, authority: authority as Authority }; +}; + +export const Details = () => { + const { id, authority } = useLoaderData(); return (
diff --git a/react-app/src/router.tsx b/react-app/src/router.tsx index 8eaad8fb55..0dc701b45d 100644 --- a/react-app/src/router.tsx +++ b/react-app/src/router.tsx @@ -23,7 +23,11 @@ export const router = createBrowserRouter([ element: , loader: F.dashboardLoader(queryClient), }, - { path: "/details/:authority/:id", element: }, + { + path: "/details/:authority/:id", + element: , + loader: F.packageDetailsLoader, + }, { path: "/new-submission/spa/medicaid/create", element: , From 966b23cc7ecb0a6146c3f74ef89a3bf5fe509849 Mon Sep 17 00:00:00 2001 From: Tiffany Forkner Date: Thu, 19 Dec 2024 12:35:39 -0500 Subject: [PATCH 2/5] feat(test): adding mocking tests for type and subtype (#941) * mocking endpoints for type and subtype * refactoring mock handlers --- bun.lockb | Bin 1031400 -> 1032264 bytes lib/lambda/getAllForms.test.ts | 11 +- lib/lambda/getSubTypes.test.ts | 108 ++++--- lib/lambda/getSubTypes.ts | 12 +- lib/lambda/getTypes.test.ts | 91 +++--- lib/lambda/getTypes.ts | 4 +- lib/lambda/search.test.ts | 2 +- lib/libs/email/content/vitest.config.ts | 11 - lib/libs/email/content/vitest.setup.ts | 28 -- .../shared-utils/cloudformation.test.ts | 6 +- lib/vitest.config.ts | 2 +- lib/vitest.setup.ts | 2 +- mocks/browser.ts | 4 +- mocks/data/types.ts | 104 ++++-- mocks/handlers/api/index.ts | 15 + mocks/handlers/{ => api}/items.ts | 6 +- mocks/handlers/{ => api}/submissions.ts | 9 +- mocks/handlers/api/types.ts | 46 +++ mocks/handlers/api/user.ts | 52 +++ mocks/handlers/authUtils.ts | 45 +++ .../cloudFormation.ts} | 8 +- mocks/handlers/{auth.ts => aws/cognito.ts} | 142 ++------- .../{api-security.ts => aws/credentials.ts} | 4 +- mocks/handlers/aws/index.ts | 14 + .../secretsManager.ts} | 6 +- mocks/handlers/counties.ts | 2 +- mocks/handlers/index.ts | 49 +-- mocks/handlers/opensearch.ts | 301 ------------------ mocks/handlers/opensearch/changelog.ts | 71 +++++ mocks/handlers/opensearch/index.ts | 11 + mocks/handlers/opensearch/main.ts | 131 ++++++++ mocks/handlers/opensearch/subtypes.ts | 48 +++ mocks/handlers/opensearch/types.ts | 41 +++ mocks/handlers/opensearch/util.ts | 100 ++++++ mocks/handlers/types.ts | 46 --- mocks/index.d.ts | 77 ++++- mocks/package.json | 2 +- mocks/server.ts | 6 +- react-app/src/api/useGetTypes.test.ts | 44 +-- react-app/src/api/useGetTypes.ts | 10 +- react-app/vitest.setup.ts | 2 +- vitest.config.ts | 1 - vitest.workspace.ts | 2 +- 43 files changed, 933 insertions(+), 743 deletions(-) delete mode 100644 lib/libs/email/content/vitest.config.ts delete mode 100644 lib/libs/email/content/vitest.setup.ts create mode 100644 mocks/handlers/api/index.ts rename mocks/handlers/{ => api}/items.ts (80%) rename mocks/handlers/{ => api}/submissions.ts (77%) create mode 100644 mocks/handlers/api/types.ts create mode 100644 mocks/handlers/api/user.ts create mode 100644 mocks/handlers/authUtils.ts rename mocks/handlers/{cloudformation.ts => aws/cloudFormation.ts} (82%) rename mocks/handlers/{auth.ts => aws/cognito.ts} (75%) rename mocks/handlers/{api-security.ts => aws/credentials.ts} (83%) create mode 100644 mocks/handlers/aws/index.ts rename mocks/handlers/{secretsmanager.ts => aws/secretsManager.ts} (87%) delete mode 100644 mocks/handlers/opensearch.ts create mode 100644 mocks/handlers/opensearch/changelog.ts create mode 100644 mocks/handlers/opensearch/index.ts create mode 100644 mocks/handlers/opensearch/main.ts create mode 100644 mocks/handlers/opensearch/subtypes.ts create mode 100644 mocks/handlers/opensearch/types.ts create mode 100644 mocks/handlers/opensearch/util.ts delete mode 100644 mocks/handlers/types.ts diff --git a/bun.lockb b/bun.lockb index 49d1a672022791817151968c4388401dc9599f44..b16cf8952ee70d77ff921632c9dd4b01b930d239 100644 GIT binary patch delta 18855 zcmd_yiG$VC|Htvqz0FK>rGyoiynKJZ|KWEy_nh}aAW3xm+B|Br#2)!k{D@_EX#>lk`X&k ztMPwZbx%iwR{w2Hpw-~Nt*x}`{kL`g-)Uiuxsf`_ti?_LPK)+C6CU0j-I7>?b-pD$ z(kEI!Hk2xxcx+1M;Mp0m9kjFvxw2aqX|?LsuDO)FpK@q-zOO=&d` zkDQJ)NTAj=91zW^b;ulWx_-3o#jwg((T1@l>;-McNM?_^aqo z&ErWNAJGyzN^;7|l-JQ_KL*Vxb5S;@j8L|qj8e9uOrUJzvc0F@MVW|qa=SBSD(xPW zN-EW_kEi!75yZ0x?&pC2TWUrF>?*YY1Ks|=<#qT=xEB0f%IhirrqqHTcf3mVKS8ND zCH5UTtIF5W#s6=&!awQ%XtM;9TJ_3BP9P^{wd$2rBB628kwX>VZuQw8bE@x{Kj!Z% z^Jf%^9v}G2p!PG@_I|JHvZuPf(th^bBPm5kHeEcl-Y2`(p4eaLx*5}#&AeuRr!5tl z+|;IMxU65&&c^rrG^KL0XY;-I^2p!1v>A9RqvX+HJ9@AFr@-%P*Jt!UHSN~sKepQa z3Zj2|eIx%Roz;eopo^F$-DaNX0)PL1$foB=w-86a1b@d>}{*^G^VZO$3Hb0Mf(lf}Mg2 z6M_8U;E72cBL%{bR20lA^JLP~uZJ_9NlFN>ubsOzSB!+LRdsSFL?Rm|t*e_mYhB&s z({F{_o=$o&yz{N}8hSaV<|qIA!m5@^nS4H3J3iP}H@y37a>MY2v&j!dv}oRLsF3 z&7HZS1yyY6mh3(lKiw70J>x?r% zE%mkJa<)uNOI=afHZ!MlPzkGKd(m;a)?d-VM4II|9Ye2be~@0X=^nBsk^QeU+o&7K zMhDKZRmG-wz`3?+*n=F#I^ySHTEH8~57`!AIwq=RL9*m$T3`rFpIZw59P(~Q?UE?$Sm5C?8B z*2RX}-o&&)>X9F_ZNjv6^~ob_TiuuEuAr`tRMK`#$IQ*-&|CFgOuM)tc~&CN0@|`4 z7#mT4i9p#-57?Oc1xC?s{@B)p`bFC(n07-`@)gaE^p(fEg?er_k^1h%G`Sf$+4gO2 z_P_8}avp6<(mn^?Mm^1e-`SdDd2Rb`EwKEy1DJ+sNiJaf!PW{ZWc$&5TkH5MV*JT? zJ9d@rknIkvgzaY!$g^iq()O$4+G4}K6@IhbiH)`WZsQqI&xve*(jUh5)RmPEV~ic# z+V_x^5;!K*SM7TRq$Ets(2=ZzSl5@_$wANT&Yfud=8H;6 z2X@8|W4dOSvUQ>Um*Yy?x?)FcWo(-1=eDv~u5iyk$v4DXa9ruiUeRF>P`}q!$<`gK z#?@6<`^p%r7d%MLuvK^5Ls&gq4co)mU%q(P#Iy~1kl(`CM)BZAV^46t18>4~Li8dp zz;s)v>j8UH-=|vwsh+J5b*+fH*SGbht`(6ru=S%p8ekcNo3o9xp+Ai$6h&$XY6%CB z^Vu4^^FVBgXWYbbgRo^Yo5TvnU-Oh^jvmaEHMU!Ak7Da=w|RsiSZ`kkS~zYf)(6v# zswJjlX&5=C3P~459XF4WQ**3a&>hq^8%|CGbw|@xQGp}K<2~aZw#Tsvww|^put~OF zwvpJButp?S@a7So)W?%XGij8quWbz0)20isX0H>fcQ}qA;(a}7fG3S((rvbZw((eL z+aOG9HG!Pp_9&*EG?6@zL!%U>F3r09K1m*-!$qaXdy4uKIdOS|$BmP~C&MyPmgy;- zcchV?G==&U+bG*qY^rTEre%6s**4bp4EBs|0;c7hrfhrCHXWOuWAR{;@mcU$2Tt*T zGq4%9XE1Hg=g1>%(`?UUgKX1nnb@7SXFc8vSZ>?%SX6swCirPyUPv#v^NZA*+h*EA z>}%aPNH5xEQSYS9K?-dzQSXYCqnu@%P5lP?R-k;zHivrkxCfkVoD0@;;2hgLY=AC1 zq`9{F)Qb^UiES!xq{WVcp5sljDnwi)nns6+>yUZ3%T z$@kb+Ic^oEtyqn`+P0c{1}k?1Kv}@Ori}A=-gK~pA zucKbl_J(aeb`MsQ@=Z)z{dMv!m~L>JFfH^3ax>dI*?l<(-vDm~m9}`mH>vNUUYl~O zJ7-b<#J1hG5vvqq4JqHlbe6nDu8Y;BeBW_zQ?FVqXXZi@sIJ41K-20*nYOX zkNx`w^cUL)P}B?atL;N9m+d#(4(vE}rQdTb9_*ws&iDtV_R~k?3LIQFQ~qiDnEDEz zPDgCJu$Qrhlt*o!P+y2OqSVZ^#-EZG+fLX%!+wiC#HOWk()c;`!z_X9ln2~R{cEf# zr8cjYVGnteMkZZ!+!xf}v1#+F`XzZom_M1T{Y2V#($ogkq_4`Pu+aJ_dV@f4#hpAuYQ0zr{we3&p$BOepx(3sX{~}MKZ$HY?jypoVE!LkhUIx@= z{hRzQowd2kx${x#Z+pON-T4?cJ0CBkitc-y`W#zj$DP3D+N#)2V)HRQs9l%SHy)g# zvCx549e5gBWUGepe{hC;u}IDXU54Y%V%HYqg;d9Oj`~XMNlIPsI39!Z=c=)g;HjCD-2==`#7pA^Nd1=eUS=1A3#jtkROIV_7R3Da{+3EOqpgO0n# zeXqwJwv}{T)d>5)x3M&+n`kux2YA2=?tB9_$Z^-&s$+v~6+K`L>`_}~TTM)-rP6hn zwn8l|`x#5ee>Df*2#$4Nbz5z0Jf^j)iO~#h;$?#4YB??gd(u`L(-~0*)48uy*L~|^ zI`@_8Vb^FA)&r*)8#u5&HZ`n~k4J=On56kP^rV}aG|l0SYz?vLw#K$b*t51Kw#L}= zwx+fwSf=e3Ogll38!zNoJZRy-Tfi3`*b>vSH^X#{>1nhzrmcG`rekb7^)~K%8&(>7 zA8TuCj_F4E0d}XY1*Yee53zRH#x80J>fPo}usx`)+Y0N1Dc$4Ft+BkEeIH>RZMWNY zVV!JuU}cEYLt$r33*825#2W3UelMn#Yl}6G8@qwpGp`)P?QYsr$a?bY@4g*qEB0$FKEQYnptDG6pgVV@tt+Y0V8?aBM$p!i z+M~A4n2v8fsSUApp{*yhgV<18SL|@XoCl_180#4i?gh*7prj|J;SRhHyUer6pV$an zH%u2!J@hy;7h7q| zwDrSYvCXvg$6mFC9&Z4)$~N0^1F_Y%xfsnLK8V-XjPs0-U~4cf;e1SI#9(Z#ZL#AX z#n!p+5=>iW2)5p~%r+F;U|V4uhP{!`j|eXt9|PZX;H$RbSe9)yMl%?}%SPL4j(Z$? z3)4ccb=(u!+qQMKk=Q2pU7y1KryY#qWwQfcci?F39oq)m7;KB}4NO}`cloUz@GZxU z#kSer#QY@~Sd|=dtVwnR!#I)2?v6Z%+j(Zw=+4d2p3)eH)tG3VFcN(_Z zw%dKDV{2@C^oXFDJPWQfe(BCLus1QKuRN3Iu#Jw}hv^FaJhsVkKe=xv*4Os4?FFnK zrYHGdF>RTddPEp%`~%efe38Imwj&tLAmn9??Qh#GEN(k$dkGtdDILSKaa8OMM5HK&j_dE%iF;yKQCMcRjYpRso|Kyw1x$+qJe0*mt&yGVT92zyrog4tx{) z-d5R`h5cZwf@z^QVq1M9s^+-2u$9CmQQm-Qq2H#y&Q{ZXH(~Mh#+%%EGq}l?VS5ML zY^!72f^D(YwQa?=+UnW1VcTr=F)j3VYzmfJ`@a#WC43irJ_m!Q4tx*GwCQ~c&ES1r z=GvOuKEUSLTG&3s7T8+ac3=x_t+I{nzY|W3Yeg$?h_O^YE-D~S(`v$wu*4MTd>t^eRX~y4T^{^Dm zL72{_ebkQ^&iNQ&a8BQN@Ev%<_^1cmkDas)u^qrp*@j|TV?F1cwGDUN57;@|2-`vI zyzOyJ3-cp(sWAIL50#M){E7Ny2advYXFG&lv5j-*pRovQr@j;1_ZRB9Y!e;#E0$<` z%Jv%;vrUe>^Y35^s5Hfae_(kX_%x=w-C-=CzjuFFWCOV4sl&brJQLyLj7mk zi?;aR;4j9|coh59HVf0HK8F2ao8!3S*kRjT+X?JX+dNF0`Xu(ZZGq!XVMhyb{%Z*r zg4)!lsULUXGIu_MowTiR=d;*p+e*is!_L}Xv7N{Mv8}?i1utOr{b;r!5BpzBcoEb` zIt3`-^h_>MZ^LIv1u3&IZH3F!GccvM9rq7b4=Y5u3DbC2sHb9uDc^CNCZyT6c)W<- z{}uFr+Z`Ci3fbPZ<-!Wv-m@iO#cl6Kip(u#)uMlZX9J znf;ZTHUyNV@dYI@K{_u7m~lDmKOQh2mY*jXrLS!I>P-QxGI3wq^wk@k^Hs>-*a~7F zyYF6Gp(y)b?^2Y$1+|2Q3DlbprTsR2MQ4re2X`)to#&0;^~~g;b^hQ^z|Nno>f)PU%wdj{T_XwRTcXc(^yyYQr7l6rn5vJ>%^#6C+>**W`7Tey3*ga zQp6pmZ%yKk+DcLuW0>Y2lmYc_SLwI|%VK(SnnAz`TRCik<4)SjV-p>B%2ok; z!EvWCn!&Za^s}9HTt)psewW@mlg=3{5x5d-!i>*j+9j2-RkllxtAZ`WZXxb6Ml-mM zmqoTKj=LUfgJmZUZmn=ttW~zL|0Bj~puQ#0l87j#8Q*~EkNQf9j;oI8@AryJvem%4 zV6Cv+wwjneFS-Luw$;LVliOl38S@Wr1o|0M99Wz7ZR9%%%wxNWc5_=QMm5ObMK_uD zH#UEynyTSa%`d~HM_mB(N8elruWCd+EV>+;8g=`J6 zTC|l4+w`edNV_9m1fv-==0)@EtmnUC4r~HW;_dN$1Qxe7#k%{`MU(UfXy#c+{xxPH4am*r&ESj=Klb<{w8uJ;!y# z*7Jlk0jqE8gzdwW8eqC`b;jmmPZ8H7CoUdz0at;Oz^3lp6?*`ijNO81f8L8Nz@}oi zIqp6z6MGtKZtI3k#-73SJvoZtek_hnqtVj#0JdGvf78KMpk~q?>_XrS><$M$h;_BK zu|0&{YinzJ7%PV9Ly9|XJun>$FJSF#Juw{%vi5OfFHrkhbgr`+nPy9E)ea#eTpz6x33$C9u0~7^bDx+wKQ#k6~J9*+aJB zSXE5vVcQ5yTSo7Qd)OYwG!I$NR9*k+@C2xt=xuT@2ad!v6IpNDC=aN2uzhT!J)o?w zZH&j$o7#RhJ?d#ZS%2GDp_cF?aDZ`~2b2x8jrV{bV}ooHJfQ3m+eDAI2ODgA(&Nb< zwLRtW;$MJ6jFUW|Y^ZHA){r+B-(tgTQ?N$1$81wET?6zUZ@BGgOy|4ax{a_sgXwhF z4eIe!zCA@5Oapbk|3Kpj0(B}*$8^5`h>dpVXR*w1dlmj}rBht*%>F%ro@0_ualJDe z>+t8X?U>$~jq|XXn9kBau!)X)0juaYRZlu@CZ_fIi@3>-dlA$6@ct;C{gVKu1tF*v zI!0rv17~4cpX1om9`Geh>vIyD?zq{Qu3x9HXKiyZt(@Kq&9KeIv~p*#=dz9Cb{?p; z)0?5^L2b18nAYw*Hq)IKVA|SxKl7q(A$HIf+7@BQc$<(wIm@<~`f=M!wk24lxF3pU z8<&FTdDuy%oMT%?{i1EIZ8>%?mPR?xwt~7oWXVf8-?oyvzE74;xxn@^b$yDj6klk3 z1$+c7Ot}ctR(O^AVB1oRX0VDEZH1zg%iVW1b!`RN3fpVc^;f$Rlq+p(s8_(QrhFOW z^9`l9a0*xQ_Zfo-0dHzGhobT_2p6pubfz7w= z@pwD21-36d-bYxE{Oo_FuN?R>sD~mw`h9KNMg4*wp1!et;<&bydu^Xm|C3Wz4@}=; zTD#Av>-y21a=-0!>Xk4(j{K0Ck#pbLO+z!*bH+grxW}ePiXUxX*!qT%>U_DqKg~m) z^dC*iPI_OEdwH>qlXq!xV-1Zaol3eX|)jxr0gCC-< zPbG92JMFlisq0&Kx{RH%{X)GRC%rCNXHz)}IB$YqX{_fA*Y)X~1An8gvsss?^S0lq z>ui=?u>C<@R}5XUF4_)LznAfJDY|6)lX_iDm!iwIzx3(Ft;TF6X z>XN13LTRCoQr8;m$`P?0qy9Qq2VFU$n6}Ju>gubjM55zP*tW!}BpFXqe}q5oE9JJG z!baMXZKtsvKI>z)Ggv7w5s{#x#&-aDkVX zF`fPCnAYSX^*juyv%i1`yhOc>t)T5PR?b(9LLToQth%j;2gxS14gkuwrkus7xs;}R!Lg|_N}dyEfE`a(;uXDj8&28Dwyid zI-vABPIXSh-eIYAOk8ivi!H`VE5_Mfvw8`(ZRi@rrTZ`1rRt3`~ zSX;8a?K#Y;x}K%Z%8kW%LhgbRpkI?nb_!`~bN-`9bo-S=;Nxen`AV{|?4c z@*eVGau0G(axZf4@STRS)_E`Sk=hk~tOi9&WEE)?8=n-@zr)d=+&62{t+C${BLlLg zw2n1Tj?B#Z^sZQmNOAorvKIM9vVII%hg_FjFN}1EJrvoJ)xATkVy?tHpxd&hb&6#b zN}1(vRVEzFUYR8Qyda2WJvJcLw_lomA##?izule=kL-;NDRMKDKZY7m>Q@gt$vcw6 zZr{c}yhcA^&~HV)CR~5&xkO#Rc+f8)&WBC*#crs2!ISmQNt3^!RJi`QqiOm}gMFlrO46z4CF^$v`u%}^{GeZ%%;V!LT{DuY=O*h*g!&PL$|SOW zzo6eW61e84yF4=I}+r&;Ac z8zwAEy**m~Y}lSMvMgM%EVWi-L-=J*k$ZV+t!V!9VT0wV#Y+79uLIS6qyBwm)299$ zjdZK6W#kzlYtZu4;%O!R{bzsLH=NpQ-txT_iKtPH|9I-oTJn18@Pw4cdS5`=wk0gT zF|~14?~SQra}_t)7wN-wr$CQVq3E#!>*gs?@M{W|Ju^Vty%AGO20PpKh!#` Ag#Z8m delta 18473 zcmc)ShkI1j-uCgGgoI2;2wi%Ss?vK0k*0JNsUp%X2uM}R(4?b4kf9gpg3`o*Gz%)C z=Lkmyj*5T<6jVSu2t40=a{IjRKk#1fx>$Ry{n@{@c3-n+GQ)wf4Su~*e^&YXvK0Ad z*RAek&#jQU1L#Cdfuv6sM=Lk?XNR z4$2vnStzUA$nahRhV*`6SP;yhU$q}VS%|VdWq!&Qlu4BFw_<~QL69`|;?39~7f^It zzK1t8n{aH_Kx6y-*_# zs=_j7bTWn6YRqO!%YLdx{2u0->1f1f;t+O;)}Er)K9Uj>Q#a;j|^GMV|OD3w&IT~9CX<+8VzQ}&1k3bdlWUZ7GN(9iS#cliLGhHJxj zQ%<&BIa6T#pr|%k>;a;_%XnZNV_q>b-{MQ ztw>B5ST_df9R_Ykwg@_g6Otp}_fKdUb2oChKae;U*gqDCiDVxK>=;Xvq2p*07x_TY zZyZo^JP;olG#1sWAEBI+@cSu9J9WXZrFh ziL2tW%(|8sJvYm1gd#D!l5<9S+(^7XGVMlUA2#dajl`T`2Ek~G$((VSQfMHHrZ{GF zsi}`*85Cr4oZ8)MOTcums9kYe7Pn;(4NBXR-B$O}{TUVxvV!V}(K;xXfk8z#&dNMP zQ#4hwX}qsutLzRL!Gjo0NL6jwsmEd3f$Ercf{{J=oDOt9){j~^&~P4n&ls+otSQJp zjoiTpnC|daKwiq+BgUB8;WTq1<7-4!)?4C1xsx&VLBj%$t!JBF>Q1a@>*MXnz1N&K<9uo z-KKN?x^0F{r>eParcLMk0o$vXHo644xNSD3jV?(pZA;5&8xBf=WsGwjSQ@*ltAsQ! zBQPjKeS?l4DPq$&xyd%)rVDF_ZGlbW>Qwi)(5A7qM;6Y%&cz~7TUd_VlS@{%1k?F1 zPwuPBn6$!;D^Tx7knVyvF#ZJ<$=%hEwBB*LczfF3v{lA>**1hhtyov|bH=x9ybK4= z+cvo|uam(bOe@~(I9}a@!H(N%tAP!%y@Tn1)FcnH?ZmWm;aW^a827kwZLC%T6Vg6R z7fl^<#E12LOy`(~j9@;dgY%KC9`yybPuyR9>?WP)3>>gEpnfYR2uJZCs6A>(zN@v7 zzH)~TQqRmGQsX0-7B?a%+K$>D!m?mW$83$Mr#SAvwkB9s+qaoH|LTyZks!PAI|9{D zGja~waa(gNm+gc*d>G4PJ863a%WpenYk?K8{pkK$vi_j3@n;9N!iM`O{9@xFjK>=$ zq|>%G)Z0ZR2+r8rGXJRUSB$QsF^}2KI!-a|$zct#=Rl2G3VMR96w5WC#*dS`3P_nS zZG#%>;?x)tkEyNNo$;Vj&~Y8GvzP{=Lbi_7e|KErM7C8Ob|U{_EaJe<*q64Vm@c?3 zRmHS*y~)ckUKGMX4R_cF{8mFfsiv(jb?t^;6>8b~QP*zBYTKTn zKAH~IypHWz>Mwi6bun$=bL4Ec`q4NptLMR$UU35l_QzJ+9(0ETZv{?Lw!LJVj7_z@Y@32jvyH^Gfm6xTZDVZHuo<>- zSgdw;IylofA&LZHui9R*&BR`_O?HQ`VzX@1Fm3c}5$8?}8Ph49_#pXQl#; zi&I8y3#eCghx2URFkGj$d+Z)t}Bt$8A!?u#yp|+K_RoJiu4XC75#?{n^ zM+PNuW4!G6HD0uqMWbzNZR@Zxwsn|xay|J8+nbJi6Vm}HOWt7HK)nY0Q;u?@Z6o!H z8T%Lx-g1X;ft4~a*o5h9zD>@Xg)>IE)r~h%FKpXp+l)PdRiu0e({bKHeh8~fxf9by zZzVUj?TWVL#@Gfn0hM;U!*{5EPQ41{9yi`j{R`VZ+q+nqP@oS%f)6m=80q9%SPjY# z9k+veZQFiKSJ6&#gMZ$|X=U1m_s9(iR663uyQn|t#>Z^CvBr-3*0u+`N?qxD+g|F| zZ9h#{6vCkHy)3v3-nP zq^@*2!@|KQ%xI8OIzy@R^eMR{7grt1-)sk{uk{Ud&h{C$9;-|FhwUKs@Jcy>#}BXTy6!;f%v|8hn$+y(sfK@C^00Fr|F9U#Z{b z!t70%-}W2z3;CFk3Se6CS@LAsK0{g9ap$PF!Jefog6XLK&iaE7Y5Y88F*p8$`g`uM zgd6{fEzHJ*RML&lQ(t5&?YIlrVw(mgT?-e~>dP^$KX|}_m#D9Bg%uxlr?PEsHfh;gjCaZoq9GKqhvUGxNd+EV_gT{ z#1`7>VMUm~MLx~OD0Rhj2>&LRa9lTxf5B~XNn2mr9jugXAf_X8SNmVuILLuoa@i|+ z*?}?GO>8=iM%rSrDvlfFwsBZh+bfRCgjKUma$G!CU8dvz8kj_x0M>Be0$XORrfsDg zCt|g18!=sQA?$>&^i9~kSQ2*9b{NwU%z|k|Rl0zMnGceg4E1@x2g7duH_tm7YV%m?WHUq()_ z<;V09hf-!+0qlZ1OvH4w3SynG_0*FbR|xCKAhj9GV$;yw&6X_F`7Z)4rrbhKabQub zDS_LtthQp-C4E8w>GW4&wz9rpm%FT=t?VNfrrWx@XLu(%tS z!v?r<30rwgx2jS}cUS>?(N@}45gTK>57SYog#GixRW=&O@vjVybzpfnu7Zunw09LT zW`n9sCOEE=9~5fy4b6>`nG!5Yms(2c+#KaMGd{E0gKXX4`MnA4Y9elrjC0Mn`di=>Fn#V zM3|HO_Pkuo!^{!49Cdx+T_tUHUim&Y1SD71q$! z71NPvjWxDC?YK7B5wcQGOx3nbj@o)*T1PwPk7=a+l9|57N12~W)|20}Zu}VY%3ov8 z*&b(J_lDB*Zrh%DjeAN19QOn^f_Xit4YYN@blK`bEj-BB5zrHwp2}Xdb;8c(%y?iL zjOi$J#)|Wx^b7T&j_ZQm&c{m#Hq6!))3|w-Jlysq*1^wCBQh);bOV1N|4!gb4t$FF zleU*_-I>=D+C}0<+MdSB*hblUUEzR~Uw!!wgwniO32W~XZci{8bTegK5 zvq66*Z`&5xUcfeC+Q7w_?uY@{X4`Vd4aBy%?FvjsCOin-YFuf25qrnB+BO*5Zd+>` zg1u{7ZySoG+csd#2E&-_ux)hQaBOEb?tg9d+YTH7zDJ;JlkFvJmm6=ky^QU4+!otN zY>#cLZ4|cGwhhyf8IA38f9Xk_f98WROx`!{ATWApFkNt$S^l0o9E&Z<%bkMlvW=7R zw5UhZ-L~=AQrjNe1ZcQT3dudSX9K5P8Z9nQg?!}KKoGo~Yxh7GZu!E`?7Vnc1`FlK|-nT)ah zZkvaNZGYJKz5pLHfJ%RY+L-wSj(6Y%2QI)S*e==@ViRqDVcM8Q*d+IN)%`8Trr56A zmS8Qg+Zumvg4(;K;NwE-x830~ti3IU2QX%XD0YV{ZlNKvLL37-bDS7t%%!h#tuh~<6j(P zKG?$KTL+e~ZNxoAtM_43 zv3SaQm^Scz>T_%j9rpp2X440%%myDaS!~nisj`olEXlBN^!Qiaab}qiy;Knc3hA zCSh9#+rO}}HodD;+`pNOvvtC>fnQ=xvCNcDV%oq%)Z3^-VRr`}rry@p%N_m)>tyR~ z`wHu9>tp*G>uS>%9GDHhVe+J{pX~_N%@%$J)E4ULv^JPX*&oyGbd37N+!-Gu3~=NB zVt?5N+P=ju*#_CZ!!Fxi#I(oXW7lj$GvdO*aqzlvm>cVP@P=(Trj0p){cU^6aVN3c zwwE!z=$yjt+QM%8BNoHXg(%0l?N8L>@^Joz;~n@j^>_zPwEcpGY?IvhG?s)ZO?KQF zEUV+DVtTdv6-#y8Y`6Ul%kH>2+Ct`ovrK+sU`V1&vz?>JckCD2>$X3z)3$k- z4)vedZ?*-FJCB{UEwqI%fai>hKppCf*q^o~4*Ux{Z(EA#P+!6>+E%*lW$cn|wcB37 zuGrQ%?kaXI7vsP7c%AVY^*auH6VoBQj@9v_*;dEh!1ReuHp+J}is%5%2Jy>E-b zaz|Da;|+E`FZ$43#Ifine`@uy!!u!LZJ*fUG3{e+R{5zd0sF>(4Le}dcWH|Iz3*o> zeV67EZ)pqY1@@pZ1YXI&;B#9Nb`4Yd0@Fd$mu@;^1zGWzj!VW`Q!k1gqGUGuMV#ZT zxES^y$LWhW*?DwP`YLMNV5wjZurz^RJ1`q|lKC>^Z*2O)&OtXmV$&CP^cF|!Bz~L;JAw!7O7Ao6d#`Gz`q<=oWQvbyo50ulwhKd7nH6z zt|a!k-Yt`^+Dc*Tum-I78m3cH8q#mU}vy781KM}m_8zE zfhE`~Vg1Ohu*|l~%s*#Kv{hlgDY-RqAzM}Eo7s{uszEg-r^5ubB_}(uI;hvUcH|UW z4NP~0EUT?1){9Oa#ZqmxFkM)Wle5`sW4eZ9*==>O%C>M0V_mQcsFc%I4~sD09?yj_ z8`Ni_6?ee$I8L93P3HY@7wjHeL#(qu(aCFj5Ys0_-HFSWVU2=DU`wzkm><-+dkAZT zDHU>KeVEqHR@l}Adn|IX6oYAdFDmLTbhJC#irboF`*{&jDupo{Jj_Jz<@>PuGVb;f zOdlS}?z6SPcDwEUZrc(okg<+%P}YI1z{21QG%jarjTNz#x3$4?WHb&cxWl$sE}OpF zz--Wt$)A3et73Z;J8!EN?T_pDG4Nl;>JEGy(-GHYRx=vN*~GT;7&H#6WqShq7E`K? zX{_piEygAi*T8Wdv5nX(SVLPUtb1E<68IpfGuRnihE2g5JFp9uhE2tq*t%jSPO@D$GX^B+MdR`+FIFqV0kfp_R!ka6VutB zgSD~s!gThraM0G+8`N1%Be0#V52mv!d(_q!OXK~h(qkC2(LqBi(OdiWj(dg$T8Zol z+q0O~u@vhNHO{I=7p+9t(Sgrn>TosI$=2T;$~xO#aEEKKF17*gPo{4nQUn9tpWZk> zX&WR9vy!*LZpIfuZMEzv+h9yvt#{MiZ9_0^wCriyP^=uL)WbFm(~jtUZcp2AOzV(^ zdl^T7T8ZBL_O`u*X(h5gwwK-EKCG{8q&t-LvyF0p?_ooLzQhLDCb&P@K-mAuJ+cZpfxZaTs4;!b0-9f!08-eLooPp^MKY@*O z+)PY&_(^P(?Nv;7xZZt@w!MahF}?d5W1EHPcGtTvtyk*^&jxkRo&m=@a1K`5@0=z$ zFb&h*oh5FPi@=$- z1=y6xxN?kD+9AEidCiL!u}C|l_c*iM?_x~*a}7&#+!9PL`8UaPZA&p7MA_@MW!MGY z3dB;*vn{87F~h<^#JB=1<0qf_wl}aFJkTUjF0iene#^GdwhHTtWuaVTTTQ(UPg=>8 zi*0MD>-%9TluM$nO-p+cr|~MB99nYiw^(FR3S9J#w!F^|8g<)Kl5&f|MH^xQY4_o*fHOZnSNtet@<` zDBrSep?==am~Y#*V%oq`l$&hZsA~gd;myW(jAbad*tS#GmlVrVZneEjeY0&F#%z$z zWC>QDa=YVpP}d`WUCMWDJE`j{0QD%-Gb|ju$BZ7$8c^?9z#%!>U$vEQlc(vE|KJ`htIR8rTgF43_fK%MzNAB=LY^rU) z<37Ts**};=pwed;*JJQ8w$%2e`}+i2W;^uHnDHst+xV3O4`6x>(!<`@w$G^F z^yAVuwu6pqMR~;bIrVegvU)^1ifQM*pspd~DavncP5#A98L&I$aX0=qb*)&>89&&* zwCR!Jgzb>6U*vElzQF!0v!}f1KVI}a<&UV+BKHO^nabihwh*C!7e#x6PTN9y`+orbZ?wx6iC(Bfeif-C|qh1TsP;|?7 zR^JwFV*J~9jsX45Q0cbqcT6{~hO9fbKd5VuHFDgw{YhP4Vb;i@Us3AFoTsj~8YSW| z?eGQL?l6^1#*5Sk=42@;-u4$Z(w1PmgnjC}KC|sI_8gb7?({_473y=jadlINY*(qT z^1YXY>1{`F4P0Z)0x}z1XR;pC-JgPKPi|1pLWjEhv$?~Y)Qj1&+iqdSJ!0f=e}7{Y zZMhtGTR&r{WXx^6L*OO$Si?ykOe?-i{Sc<%MBl@wh%Pv6E8w;<1RwR$Drk$v{%b2_ zi^GOQcbM~E*d1m9hk+WNieh?+ipTEdO4k)%!i^KK;! zmg90^dfAfIw&lk9aEf(J)UoBk>R{3HU)OjK7z673*R$ot;%xP8`LLhZJDuwWw*1t8 z@g6s{6~K;TI{y#a3R0iW2I~Ab!lFN;Da6bSV`B#v#ztVeCYsoaP=CqR)K(N5V{2wB zhRx?yM%RvhovTBAFZFe7j850X82cC$r@lUHY~jEX;Bh+CxoK%DNqsw})6mLRin<0B z9rD(;($rgUw3OP|%3vCTbtK!`?xTK+_3EgF+Zpd?W+E%mo*&Br)Hkpat*jHK!&RBO z_E?>Caan%pCDykV$C)?IvBwwJt*{C@uQ>JNs-CxrB0E%YJxO8=l) z=uCV}-}LpZLd_D>FSifnjmf9qK9(bwC+jzlmC04eRU;)kgnFjW=nyIq7vBtMn7+Mp zC_PuwKz(D9wEws^|K0@sOyEvp`qBZRXP-;aZ$Yk*KjxbHB$E5P(BR1O??U?v>9-&H zF@pX&sK2?~q^=(<=!Xo~BICXfRVb&QjA*gm>u9mwjcQ(hX3;Xe!~CaD{}V~R6CWw@be6^MzL`8EE^?@7QvOKWeo6V$H@}fQCsToXj>%uh=5;I}3Xx6!TjY!Uy)HR_wSWF&nu@cY81&Vdfn#H1x>YUD zn)pnXA&?tlY_08ep1e0@+RrShR=%Q^R7r2KJ~>}Xfq(u_nn&wT>$_ylvC>3TqHQG( zVS4!8DOKJb|p8|m>Z-w+?6~wE-9~`^+`>3Og^|bnVgb-aBtQkXJRTx z&aO`VFj8wDZ3Q?p>+H zA}4pHcFam8$=qB7gdmyHl&gCUxJH!8>*-wnSv_-qg-n0{>4x{Et5wvGw+) HW{LS9a{NQC diff --git a/lib/lambda/getAllForms.test.ts b/lib/lambda/getAllForms.test.ts index 046329e12d..d166b0a0b1 100644 --- a/lib/lambda/getAllForms.test.ts +++ b/lib/lambda/getAllForms.test.ts @@ -1,11 +1,5 @@ -import { describe, it, expect, vi } from "vitest"; +import { describe, expect, it, vi } from "vitest"; import { getAllForms } from "./getAllForms"; -import { response } from "../libs/handler-lib"; - -// Mock the dependencies -vi.mock("../libs/handler-lib", () => ({ - response: vi.fn((arg) => arg), -})); vi.mock("../libs/webforms", () => ({ webformVersions: { @@ -31,7 +25,6 @@ describe("getAllForms", () => { const result = await getAllForms(); expect(result?.statusCode).toEqual(200); - expect(result?.body).toEqual(expectedResponse.body); - expect(response).toHaveBeenCalledWith(expectedResponse); + expect(result?.body).toEqual(JSON.stringify(expectedResponse.body)); }); }); diff --git a/lib/lambda/getSubTypes.test.ts b/lib/lambda/getSubTypes.test.ts index 3e700e9af0..1f8dd3fc65 100644 --- a/lib/lambda/getSubTypes.test.ts +++ b/lib/lambda/getSubTypes.test.ts @@ -1,89 +1,91 @@ -import { describe, it, expect, vi, beforeEach } from "vitest"; +import { describe, it, expect } from "vitest"; import { APIGatewayEvent } from "aws-lambda"; import { handler } from "./getSubTypes"; -import { response } from "libs/handler-lib"; -import * as os from "libs/opensearch-lib"; - -vi.mock("libs/handler-lib", () => ({ - response: vi.fn(), -})); - -vi.mock("libs/opensearch-lib", () => ({ - search: vi.fn(), -})); +import { + MEDICAID_SPA_AUTHORITY_ID, + CHIP_SPA_AUTHORITY_ID, + NOT_FOUND_AUTHORITY_ID, + TYPE_ONE_ID, + TYPE_TWO_ID, + TYPE_THREE_ID, + DO_NOT_USE_TYPE_ID, + ERROR_AUTHORITY_ID, + medicaidSubtypes, + chipSubtypes +} from "mocks/data/types" +import { TestSubtypeItemResult } from "mocks"; describe("getSubTypes Handler", () => { - beforeEach(() => { - vi.clearAllMocks(); - process.env.osDomain = "test-domain"; // Set the environment variable before each test - process.env.indexNamespace = "test-namespace-"; // Set the environment variable before each test - }); - it("should return 400 if event body is missing", async () => { const event = {} as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 400, - body: { message: "Event body required" }, - }); + expect(res.statusCode).toEqual(400); + expect(res.body).toEqual(JSON.stringify({ message: "Event body required" })) }); - it("should return 400 if no subtypes are found", async () => { - (os.search as vi.Mock).mockResolvedValueOnce(null); - + // TODO - should this be removed? when will the result be empty and not + // just a result with an empty hit array + it.skip("should return 400 if no subtypes are found", async () => { const event = { body: JSON.stringify({ - authorityId: "test-authority", - typeIds: ["type1", "type2"], + authorityId: NOT_FOUND_AUTHORITY_ID, + typeIds: [TYPE_ONE_ID, TYPE_TWO_ID], }), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 400, - body: { message: "No record found for the given authority" }, - }); + expect(res.statusCode).toEqual(400); + expect(res.body).toEqual(JSON.stringify({ message: "No record found for the given authority" })); }); it("should return 200 with the result if subtypes are found", async () => { - const mockResult = { - hits: { hits: [{ _source: { name: "test-subtype" } }] }, - }; - (os.search as vi.Mock).mockResolvedValueOnce(mockResult); - const event = { body: JSON.stringify({ - authorityId: "test-authority", - typeIds: ["type1", "type2"], + authorityId: MEDICAID_SPA_AUTHORITY_ID, + typeIds: [TYPE_ONE_ID, TYPE_TWO_ID], }), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); + const body = JSON.parse(res.body); - expect(response).toHaveBeenCalledWith({ - statusCode: 200, - body: mockResult, - }); + expect(res.statusCode).toEqual(200); + expect(body.hits.hits).toEqual(medicaidSubtypes) }); - it("should return 500 if an error occurs during processing", async () => { - (os.search as vi.Mock).mockRejectedValueOnce(new Error("Test error")); + it("should filter out types with names that include Do Not Use", async () => { + const event = { + body: JSON.stringify({ + authorityId: CHIP_SPA_AUTHORITY_ID, + typeIds: [TYPE_THREE_ID, DO_NOT_USE_TYPE_ID ] + }) + } as APIGatewayEvent; + const res = await handler(event); + const body = JSON.parse(res.body); + + expect(res.statusCode).toEqual(200); + expect(body.hits.hits).toEqual(chipSubtypes); + body.hits.hits.forEach((type: TestSubtypeItemResult) => { + expect(type?._source?.name).toBeTruthy() + expect(type?._source?.name?.match(/Do Not Use/)).toBeFalsy() + }) + }) + + it("should return 500 if an error occurs during processing", async () => { const event = { body: JSON.stringify({ - authorityId: "test-authority", - typeIds: ["type1", "type2"], + authorityId: ERROR_AUTHORITY_ID, + typeIds: [TYPE_ONE_ID, TYPE_TWO_ID], }), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 500, - body: { message: "Internal server error" }, - }); + expect(res.statusCode).toEqual(500); + expect(res.body).toEqual(JSON.stringify({ error: "Internal server error", message: "Response Error" })) }); }); diff --git a/lib/lambda/getSubTypes.ts b/lib/lambda/getSubTypes.ts index 8ea4fff1ac..3f1d44f56e 100644 --- a/lib/lambda/getSubTypes.ts +++ b/lib/lambda/getSubTypes.ts @@ -1,9 +1,9 @@ import { handleOpensearchError } from "./utils"; import { APIGatewayEvent } from "aws-lambda"; -import * as os from "libs/opensearch-lib"; import { response } from "libs/handler-lib"; +import * as os from "libs/opensearch-lib"; -type GetSubTypesBoby = { +type GetSubTypesBody = { authorityId: string; typeIds: string[]; }; @@ -49,11 +49,7 @@ export const querySubTypes = async (authorityId: string, typeIds: string[]) => { ], }; - return await os.search( - process.env.osDomain, - `${process.env.indexNamespace}subtypes`, - query, - ); + return await os.search(process.env.osDomain, `${process.env.indexNamespace}subtypes`, query); }; export const getSubTypes = async (event: APIGatewayEvent) => { @@ -63,7 +59,7 @@ export const getSubTypes = async (event: APIGatewayEvent) => { body: { message: "Event body required" }, }); } - const body = JSON.parse(event.body) as GetSubTypesBoby; + const body = JSON.parse(event.body) as GetSubTypesBody; try { const result = await querySubTypes(body.authorityId, body.typeIds); diff --git a/lib/lambda/getTypes.test.ts b/lib/lambda/getTypes.test.ts index 1ef0a8c5e1..a6036c8795 100644 --- a/lib/lambda/getTypes.test.ts +++ b/lib/lambda/getTypes.test.ts @@ -1,78 +1,75 @@ -import { describe, it, expect, vi, beforeEach } from "vitest"; +import { describe, it, expect } from "vitest"; import { APIGatewayEvent } from "aws-lambda"; import { handler } from "./getTypes"; -import { response } from "libs/handler-lib"; -import * as os from "libs/opensearch-lib"; - -vi.mock("libs/handler-lib", () => ({ - response: vi.fn(), -})); - -vi.mock("libs/opensearch-lib", () => ({ - search: vi.fn(), -})); +import { + CHIP_SPA_AUTHORITY_ID, + MEDICAID_SPA_AUTHORITY_ID, + NOT_FOUND_AUTHORITY_ID, + ERROR_AUTHORITY_ID, + medicaidTypes, + chipTypes +} from "mocks/data/types" +import { TestTypeItemResult } from "mocks"; describe("getTypes Handler", () => { - beforeEach(() => { - vi.clearAllMocks(); - process.env.osDomain = "test-domain"; // Set the environment variable before each test - process.env.indexNamespace = "test-namespace-"; // Set the environment variable before each test - }); - it("should return 400 if event body is missing", async () => { const event = {} as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 400, - body: { message: "Event body required" }, - }); + expect(res.statusCode).toEqual(400); + expect(res.body).toEqual(JSON.stringify({ message: "Event body required" })); }); - it("should return 400 if no types are found", async () => { - (os.search as vi.Mock).mockResolvedValueOnce(null); - + // TODO - should this be removed? when will the result be empty and not + // just a result with an empty hit array + it.skip("should return 400 if no types are found", async () => { const event = { - body: JSON.stringify({ authorityId: "test-authority" }), + body: JSON.stringify({ authorityId: NOT_FOUND_AUTHORITY_ID }), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 400, - body: { message: "No record found for the given authority" }, - }); + expect(res.statusCode).toEqual(400); + expect(res.body).toEqual(JSON.stringify({ message: "No record found for the given authority" })); }); it("should return 200 with the result if types are found", async () => { - const mockResult = { hits: { hits: [{ _source: { name: "test-type" } }] } }; - (os.search as vi.Mock).mockResolvedValueOnce(mockResult); + const event = { + body: JSON.stringify({ authorityId: MEDICAID_SPA_AUTHORITY_ID }), + } as APIGatewayEvent; + + const res = await handler(event); + const body = JSON.parse(res.body); + expect(res.statusCode).toEqual(200); + expect(body.hits.hits).toEqual(medicaidTypes) + }); + + it("should filter out types with names that include Do Not Use", async () => { const event = { - body: JSON.stringify({ authorityId: "test-authority" }), + body: JSON.stringify({ authorityId: CHIP_SPA_AUTHORITY_ID }), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); + const body = JSON.parse(res.body); - expect(response).toHaveBeenCalledWith({ - statusCode: 200, - body: mockResult, - }); + expect(res.statusCode).toEqual(200); + expect(body.hits.hits).toEqual(chipTypes) + body.hits.hits.forEach((type: TestTypeItemResult) => { + expect(type?._source?.name).toBeTruthy() + expect(type?._source?.name?.match(/Do Not Use/)).toBeFalsy() + }) }); it("should return 500 if an error occurs during processing", async () => { - (os.search as vi.Mock).mockRejectedValueOnce(new Error("Test error")); - const event = { - body: JSON.stringify({ authorityId: "test-authority" }), + body: JSON.stringify({ authorityId: ERROR_AUTHORITY_ID }), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 500, - body: { message: "Internal server error" }, - }); + expect(res.statusCode).toEqual(500); + expect(res.body).toEqual(JSON.stringify({ error: "Internal server error", message: "Response Error" })); }); }); diff --git a/lib/lambda/getTypes.ts b/lib/lambda/getTypes.ts index 813e62ed6c..21eb17d7ab 100644 --- a/lib/lambda/getTypes.ts +++ b/lib/lambda/getTypes.ts @@ -3,7 +3,7 @@ import { APIGatewayEvent } from "aws-lambda"; import * as os from "libs/opensearch-lib"; import { response } from "libs/handler-lib"; -type GetTypesBoby = { +type GetTypesBody = { authorityId: string; }; @@ -56,7 +56,7 @@ export const getTypes = async (event: APIGatewayEvent) => { body: { message: "Event body required" }, }); } - const body = JSON.parse(event.body) as GetTypesBoby; + const body = JSON.parse(event.body) as GetTypesBody; try { const result = await queryTypes(body.authorityId); if (!result) diff --git a/lib/lambda/search.test.ts b/lib/lambda/search.test.ts index d9cad9d9bc..07f10acfad 100644 --- a/lib/lambda/search.test.ts +++ b/lib/lambda/search.test.ts @@ -34,7 +34,7 @@ describe("getSearchData Handler", () => { it("should handle errors during processing", async () => { const event = { - body: JSON.stringify({ query: { match_all: "throw-error" } }), + body: JSON.stringify({ query: { match_all: { id: "throw-error" } } }), pathParameters: { index: "main" } as APIGatewayProxyEventPathParameters, requestContext: getRequestContext(makoStateSubmitter), } as APIGatewayEvent; diff --git a/lib/libs/email/content/vitest.config.ts b/lib/libs/email/content/vitest.config.ts deleted file mode 100644 index 980c24e897..0000000000 --- a/lib/libs/email/content/vitest.config.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { defineProject } from "vitest/config"; - -export default defineProject({ - test: { - name: "email", - root: ".", - setupFiles: ["./vitest.setup.ts"], - exclude: ["**/node_modules/**"], - environment: "jsdom", - }, -}); diff --git a/lib/libs/email/content/vitest.setup.ts b/lib/libs/email/content/vitest.setup.ts deleted file mode 100644 index 15a05336f9..0000000000 --- a/lib/libs/email/content/vitest.setup.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { mockedServer } from "mocks/server"; -import { afterAll, afterEach, beforeAll, vi } from "vitest"; - - -beforeAll(() => { - vi.spyOn(console, "error").mockImplementation(() => {}); - - console.log("starting MSW listener for email tests"); - mockedServer.listen({ - onUnhandledRequest: "warn", - }); -}); - -afterEach(() => { - vi.useRealTimers(); - vi.clearAllMocks(); - - // Reset any request handlers that we may add during the tests, - // so they don't affect other tests. - mockedServer.resetHandlers(); -}); - -afterAll(() => { - vi.clearAllMocks(); - - // Clean up after the tests are finished. - mockedServer.close(); -}); diff --git a/lib/packages/shared-utils/cloudformation.test.ts b/lib/packages/shared-utils/cloudformation.test.ts index e48b3ad604..4a0df3ae5f 100644 --- a/lib/packages/shared-utils/cloudformation.test.ts +++ b/lib/packages/shared-utils/cloudformation.test.ts @@ -1,5 +1,5 @@ -import { TEST_CF_EXPORT_ID, TEST_CF_EXPORT_NOT_FOUND_ID, errorCloudFormation } from "mocks"; -import { mockedServer } from "mocks/server"; +import { TEST_CF_EXPORT_ID, TEST_CF_EXPORT_NOT_FOUND_ID, errorCloudFormationHandler } from "mocks"; +import { mockedServiceServer } from "mocks/server"; import { describe, expect, it } from "vitest"; import { getExport } from "./cloudformation"; @@ -16,7 +16,7 @@ describe("getExport", () => { }); it("should throw an error if there is an issue with the AWS SDK call", async () => { - mockedServer.use(errorCloudFormation); + mockedServiceServer.use(errorCloudFormationHandler); await expect(getExport(TEST_CF_EXPORT_ID)).rejects.toThrow("UnknownError"); }); diff --git a/lib/vitest.config.ts b/lib/vitest.config.ts index 7f7947edcd..cf56b9015a 100644 --- a/lib/vitest.config.ts +++ b/lib/vitest.config.ts @@ -4,7 +4,7 @@ export default defineProject({ test: { root: ".", setupFiles: ["./vitest.setup.ts"], - exclude: ["**/node_modules/**", "libs/email/content/**"], + exclude: ["**/node_modules/**"], environment: "node", }, }); diff --git a/lib/vitest.setup.ts b/lib/vitest.setup.ts index 4e0a962fba..9fa5507433 100644 --- a/lib/vitest.setup.ts +++ b/lib/vitest.setup.ts @@ -14,7 +14,7 @@ import { USER_POOL_ID, setDefaultStateSubmitter, } from "mocks"; -import { mockedServer } from "mocks/server"; +import { mockedServiceServer as mockedServer } from "mocks/server"; import { afterAll, afterEach, beforeAll, beforeEach, vi } from "vitest"; // TODO to mock diff --git a/mocks/browser.ts b/mocks/browser.ts index 1a0434a512..548971e336 100644 --- a/mocks/browser.ts +++ b/mocks/browser.ts @@ -1,4 +1,4 @@ import { setupWorker } from "msw/browser"; -import handlers from "./handlers"; +import { defaultApiHandlers } from "./handlers"; -export const mockedWorker = setupWorker(...handlers); +export const mockedWorker = setupWorker(...defaultApiHandlers); diff --git a/mocks/data/types.ts b/mocks/data/types.ts index 1a6b710422..17df65441a 100644 --- a/mocks/data/types.ts +++ b/mocks/data/types.ts @@ -1,51 +1,91 @@ -export const AUTHORITY_ONE_ID = 1; -export const AUTHORITY_TWO_ID = 2; +export const CHIP_SPA_AUTHORITY_ID = "124"; +export const MEDICAID_SPA_AUTHORITY_ID = "125"; +export const NOT_FOUND_AUTHORITY_ID = "10"; +export const ERROR_AUTHORITY_ID = "throw error"; -export const TYPE_ONE_ID = 1; -export const TYPE_TWO_ID = 2; -export const TYPE_THREE_ID = 3; -export const TYPE_FOUR_ID = 4; +export const TYPE_ONE_ID = "1"; +export const TYPE_TWO_ID = "2"; +export const TYPE_THREE_ID = "3"; +export const DO_NOT_USE_TYPE_ID = "4"; -const types = [ - { - _source: { id: 101, authorityId: AUTHORITY_ONE_ID, name: "typeOne" }, - }, - { - _source: { id: 102, authorityId: AUTHORITY_ONE_ID, name: "typetwo" }, +export const medicaidTypes = [{ + _source: { + id: TYPE_ONE_ID, + authorityId: MEDICAID_SPA_AUTHORITY_ID, + name: "Type One" + }, }, { - _source: { id: 103, authorityId: AUTHORITY_TWO_ID, name: "typethree" }, - }, + _source: { + id: TYPE_TWO_ID, + authorityId: MEDICAID_SPA_AUTHORITY_ID, + name: "Type Two" + }, + }]; + +export const chipTypes = [{ + _source: { + id: TYPE_THREE_ID, + authorityId: CHIP_SPA_AUTHORITY_ID, + name: "Type Three" + }, + }] + +export const types = [ + ...medicaidTypes, + ...chipTypes, { - _source: { id: 101, authorityId: AUTHORITY_ONE_ID, name: "subtypeOne", typeId: TYPE_ONE_ID }, + _source: { + id: DO_NOT_USE_TYPE_ID, + authorityId: CHIP_SPA_AUTHORITY_ID, + name: "Do Not Use Type Four" + }, }, - { - _source: { id: 102, authorityId: AUTHORITY_ONE_ID, name: "subtypetwo", typeId: TYPE_TWO_ID }, +]; + +export const medicaidSubtypes = [{ + _source: { + id: "4", + authorityId: MEDICAID_SPA_AUTHORITY_ID, + name: "Sub Type Four", + typeId: TYPE_ONE_ID + }, }, { + _source: { + id: "5", + authorityId: MEDICAID_SPA_AUTHORITY_ID, + name: "Sub Type Five", + typeId: TYPE_TWO_ID + }, + }] + +export const chipSubtypes = [{ _source: { - id: 103, - authorityId: AUTHORITY_TWO_ID, - name: "subtypethree", - typeId: TYPE_ONE_ID, + id: "6", + authorityId: CHIP_SPA_AUTHORITY_ID, + name: "Sub Type Six", + typeId: TYPE_THREE_ID, }, }, { _source: { - id: 104, - authorityId: AUTHORITY_TWO_ID, - name: "subtypethree", - typeId: TYPE_FOUR_ID, + id: "7", + authorityId: CHIP_SPA_AUTHORITY_ID, + name: "Sub Type Seven", + typeId: TYPE_THREE_ID, }, - }, + }] + +export const subtypes = [ + ...medicaidSubtypes, + ...chipSubtypes, { _source: { - id: 105, - authorityId: AUTHORITY_TWO_ID, - name: "subtypethree", - typeId: TYPE_THREE_ID, + id: "8", + authorityId: CHIP_SPA_AUTHORITY_ID, + name: "Do Not Use Sub Type Eight", + typeId: DO_NOT_USE_TYPE_ID, }, }, ]; - -export default types; diff --git a/mocks/handlers/api/index.ts b/mocks/handlers/api/index.ts new file mode 100644 index 0000000000..dade0e5f72 --- /dev/null +++ b/mocks/handlers/api/index.ts @@ -0,0 +1,15 @@ +import { itemHandlers } from "./items"; +import { submissionHandlers } from "./submissions"; +import { typeHandlers } from "./types"; + +export const apiHandlers = [ + ...itemHandlers, + ...submissionHandlers, + ...typeHandlers +]; + +export { + mockCurrentAuthenticatedUser, + mockUseGetUser, + mockUserAttributes, +} from "./user"; diff --git a/mocks/handlers/items.ts b/mocks/handlers/api/items.ts similarity index 80% rename from mocks/handlers/items.ts rename to mocks/handlers/api/items.ts index bc8ef5e035..a7e83738d3 100644 --- a/mocks/handlers/items.ts +++ b/mocks/handlers/api/items.ts @@ -1,6 +1,6 @@ import { http, HttpResponse } from "msw"; -import items, { GET_ERROR_ITEM_ID } from "../data/items"; -import { GetItemBody } from "../index.d"; +import items, { GET_ERROR_ITEM_ID } from "../../data/items"; +import type { GetItemBody } from "../../index.d"; const defaultItemHandler = http.post(/\/item$/, async ({ request }) => { const { id } = await request.json(); @@ -25,4 +25,4 @@ const defaultItemExistsHandler = http.post( }, ); -export const defaultHandlers = [defaultItemHandler, defaultItemExistsHandler]; +export const itemHandlers = [defaultItemHandler, defaultItemExistsHandler]; diff --git a/mocks/handlers/submissions.ts b/mocks/handlers/api/submissions.ts similarity index 77% rename from mocks/handlers/submissions.ts rename to mocks/handlers/api/submissions.ts index 5548ff414e..10007c454f 100644 --- a/mocks/handlers/submissions.ts +++ b/mocks/handlers/api/submissions.ts @@ -1,5 +1,5 @@ import { http, HttpResponse } from "msw"; -import { SUBMISSION_ERROR_ITEM_ID } from "../data/items"; +import { SUBMISSION_ERROR_ITEM_ID } from "../../data/items"; export type SubmitRequestBody = { id: string }; @@ -19,10 +19,6 @@ const defaultUploadUrlHandler = http.post(/\/getUploadUrl/, () => ), ); -// const defaultTestHandler = http.post(/\/test$/, () => -// HttpResponse.json({ message: "pass" }, { status: 200 }), -// ); - const defaultSubmitHandler = http.post( /\/submit$/, async ({ request }) => { @@ -36,9 +32,8 @@ const defaultSubmitHandler = http.post( }, ); -export const defaultHandlers = [ +export const submissionHandlers = [ defaultUploadHandler, defaultUploadUrlHandler, - // defaultTestHandler, defaultSubmitHandler, ]; diff --git a/mocks/handlers/api/types.ts b/mocks/handlers/api/types.ts new file mode 100644 index 0000000000..abb15ad130 --- /dev/null +++ b/mocks/handlers/api/types.ts @@ -0,0 +1,46 @@ +import { http, HttpResponse } from "msw"; +import { types, subtypes, ERROR_AUTHORITY_ID } from "../../data/types"; + +type GetTypesBody = { authorityId: string }; +type GetSubTypesBody = { authorityId: string; typeIds: string[] }; + +const defaultTypeHandler = http.post(/\/getTypes$/, async ({ request }) => { + const { authorityId } = await request.json(); + + if (authorityId === ERROR_AUTHORITY_ID) { + throw Error("useGetTypes > mockFetch: Expected error thrown by test."); + } + + const hits = types.filter(type => type?._source?.authorityId == authorityId && !type?._source?.name.match(/Do Not Use/)) || [] + + return HttpResponse.json({ + hits: { + hits, + }, + }); +}); + +const defaultSubTypesHandler = http.post( + /\/getSubTypes$/, + async ({ request }) => { + const { authorityId, typeIds } = await request.json(); + + if (authorityId === ERROR_AUTHORITY_ID) { + throw Error("useGetSubTypes > mockFetch: Expected error thrown by test."); + } + + const hits = subtypes.filter(type => + type?._source?.authorityId == authorityId + && typeIds.includes(type?._source?.typeId) + && !type?._source?.name.match(/Do Not Use/) + ) || [] + + return HttpResponse.json({ + hits: { + hits, + }, + }); + }, +); + +export const typeHandlers = [defaultTypeHandler, defaultSubTypesHandler]; diff --git a/mocks/handlers/api/user.ts b/mocks/handlers/api/user.ts new file mode 100644 index 0000000000..148d725e6f --- /dev/null +++ b/mocks/handlers/api/user.ts @@ -0,0 +1,52 @@ +import { CognitoUserAttribute } from "amazon-cognito-identity-js"; +import { isCmsUser } from "shared-utils"; +import { findUserByUsername, convertUserAttributes } from "../authUtils"; +import type { + TestUserData, +} from "../.."; + +// using `any` type here because the function that this is mocking uses any +export const mockCurrentAuthenticatedUser = (): TestUserData | any => { + if (process.env.MOCK_USER_USERNAME) { + return findUserByUsername(process.env.MOCK_USER_USERNAME); + } + return undefined; +}; + +// using any here because the function that this is mocking uses any +export const mockUserAttributes = async (user: any): Promise => { + if (user && (user as TestUserData).UserAttributes !== undefined) { + return (user as TestUserData).UserAttributes as CognitoUserAttribute[]; + } + + if (process.env.MOCK_USER_USERNAME) { + const defaultUser = findUserByUsername(process.env.MOCK_USER_USERNAME); + return defaultUser?.UserAttributes as CognitoUserAttribute[]; + } + return {} as CognitoUserAttribute[]; +}; + +export const mockUseGetUser = () => { + if (process.env.MOCK_USER_USERNAME) { + const user = findUserByUsername(process.env.MOCK_USER_USERNAME); + if (user) { + // Copied from useGetUser.getUser + // Set object up with key/values from attributes array + const userAttributesObj = convertUserAttributes(user); + + return { + data: { + user: userAttributesObj, + isCms: isCmsUser(userAttributesObj), + }, + isLoading: false, + isSuccess: true, + }; + } + } + return { + data: null, + isLoading: false, + isSuccess: true, + }; +}; diff --git a/mocks/handlers/authUtils.ts b/mocks/handlers/authUtils.ts new file mode 100644 index 0000000000..97046d775e --- /dev/null +++ b/mocks/handlers/authUtils.ts @@ -0,0 +1,45 @@ +import { makoReviewer, makoStateSubmitter, userResponses } from "../data/users"; +import type { + TestUserData, +} from "../index.d"; +import { CognitoUserAttributes } from "shared-types"; + +export const setMockUsername = (user?: TestUserData | string | null): void => { + if (user && typeof user === "string") { + process.env.MOCK_USER_USERNAME = user; + } else if (user && (user as TestUserData).Username !== undefined) { + process.env.MOCK_USER_USERNAME = (user as TestUserData).Username; + } else { + delete process.env.MOCK_USER_USERNAME; + } +}; + +export const setDefaultStateSubmitter = () => setMockUsername(makoStateSubmitter); + +export const setDefaultReviewer = () => setMockUsername(makoReviewer); + +export const findUserByUsername = (username: string): TestUserData | undefined => + userResponses.find((user) => user.Username == username); + +export const convertUserAttributes = (user: TestUserData): CognitoUserAttributes => { + if (user?.UserAttributes) { + const userAttributesObj = user.UserAttributes.reduce( + (obj, item) => + item?.Name && item?.Value + ? { + ...obj, + [item.Name]: item.Value, + } + : obj, + {} as CognitoUserAttributes, + ); + // Manual additions and normalizations + userAttributesObj["custom:cms-roles"] = userAttributesObj["custom:cms-roles"] || ""; + + userAttributesObj.username = user.Username || ""; + + return userAttributesObj; + } + + return {} as CognitoUserAttributes; +}; diff --git a/mocks/handlers/cloudformation.ts b/mocks/handlers/aws/cloudFormation.ts similarity index 82% rename from mocks/handlers/cloudformation.ts rename to mocks/handlers/aws/cloudFormation.ts index 9a9494834a..5d4a965733 100644 --- a/mocks/handlers/cloudformation.ts +++ b/mocks/handlers/aws/cloudFormation.ts @@ -1,7 +1,7 @@ import { http, HttpResponse } from "msw"; -import exports from "../data/cloudFormationsExports"; +import exports from "../../data/cloudFormationsExports"; -export const errorCloudFormation = http.post( +export const errorCloudFormationHandler = http.post( `https://cloudformation.us-east-1.amazonaws.com/`, async () => HttpResponse.xml( @@ -18,7 +18,7 @@ export const errorCloudFormation = http.post( ), ); -const defaultCloudFormation = http.post( +const defaultCloudFormationHandler = http.post( `https://cloudformation.us-east-1.amazonaws.com/`, async () => { let xmlResponse = ` @@ -51,4 +51,4 @@ const defaultCloudFormation = http.post( }, ); -export const defaultHandlers = [defaultCloudFormation]; +export const cloudFormationHandlers = [defaultCloudFormationHandler]; diff --git a/mocks/handlers/auth.ts b/mocks/handlers/aws/cognito.ts similarity index 75% rename from mocks/handlers/auth.ts rename to mocks/handlers/aws/cognito.ts index d787a26c69..6f1888c9c0 100644 --- a/mocks/handlers/auth.ts +++ b/mocks/handlers/aws/cognito.ts @@ -1,108 +1,21 @@ -import { CognitoUserAttribute } from "amazon-cognito-identity-js"; import jwt from "jsonwebtoken"; import { http, HttpResponse, passthrough, PathParams } from "msw"; -import { APIGatewayEventRequestContext, CognitoUserAttributes } from "shared-types"; -import { isCmsUser } from "shared-utils"; import { ACCESS_KEY_ID, - COGNITO_IDP_DOMAIN, IDENTITY_POOL_ID, SECRET_KEY, USER_POOL_CLIENT_ID, -} from "../consts"; -import { makoReviewer, makoStateSubmitter, userResponses } from "../data/users"; + COGNITO_IDP_DOMAIN +} from "../../consts"; import type { + IdentityRequest, IdpListUsersRequestBody, IdpRefreshRequestBody, IdpRequestSessionBody, - TestUserData, -} from "../index.d"; - -export const setMockUsername = (user?: TestUserData | string | null): void => { - if (user && typeof user === "string") { - process.env.MOCK_USER_USERNAME = user; - } else if (user && (user as TestUserData).Username !== undefined) { - process.env.MOCK_USER_USERNAME = (user as TestUserData).Username; - } else { - delete process.env.MOCK_USER_USERNAME; - } -}; - -export const setDefaultStateSubmitter = () => setMockUsername(makoStateSubmitter); - -export const setDefaultReviewer = () => setMockUsername(makoReviewer); - -// using any here because the function that this is mocking uses any -export const mockCurrentAuthenticatedUser = (): TestUserData | any => { - if (process.env.MOCK_USER_USERNAME) { - return findUserByUsername(process.env.MOCK_USER_USERNAME); - } - return undefined; -}; - -// using any here because the function that this is mocking uses any -export const mockUserAttributes = async (user: any): Promise => { - if (user && (user as TestUserData).UserAttributes !== undefined) { - return (user as TestUserData).UserAttributes as CognitoUserAttribute[]; - } - - if (process.env.MOCK_USER_USERNAME) { - const defaultUser = findUserByUsername(process.env.MOCK_USER_USERNAME); - return defaultUser?.UserAttributes as CognitoUserAttribute[]; - } - return {} as CognitoUserAttribute[]; -}; - -export const convertUserAttributes = (user: TestUserData): CognitoUserAttributes => { - if (user?.UserAttributes) { - const userAttributesObj = user.UserAttributes.reduce( - (obj, item) => - item?.Name && item?.Value - ? { - ...obj, - [item.Name]: item.Value, - } - : obj, - {} as CognitoUserAttributes, - ); - // Manual additions and normalizations - userAttributesObj["custom:cms-roles"] = userAttributesObj["custom:cms-roles"] || ""; - - userAttributesObj.username = user.Username || ""; - - return userAttributesObj; - } - - return {} as CognitoUserAttributes; -}; - -export const mockUseGetUser = () => { - if (process.env.MOCK_USER_USERNAME) { - const user = findUserByUsername(process.env.MOCK_USER_USERNAME); - if (user) { - // Copied from useGetUser.getUser - // Set object up with key/values from attributes array - const userAttributesObj = convertUserAttributes(user); - - return { - data: { - user: userAttributesObj, - isCms: isCmsUser(userAttributesObj), - }, - isLoading: false, - isSuccess: true, - }; - } - } - return { - data: null, - isLoading: false, - isSuccess: true, - }; -}; - -const findUserByUsername = (username: string): TestUserData | undefined => - userResponses.find((user) => user.Username == username); + TestUserData +} from "../../index.d"; +import { findUserByUsername } from "../authUtils"; +import { APIGatewayEventRequestContext } from "shared-types"; const getUsernameFromAccessToken = (accessToken?: string): string | undefined => { if (accessToken) { @@ -111,27 +24,6 @@ const getUsernameFromAccessToken = (accessToken?: string): string | undefined => return undefined; }; -// const getUsernameFromSessionToken = (sessionToken?: string | null): string | undefined => { -// if (sessionToken) { -// const session = JSON.parse(Buffer.from(sessionToken, "base64").toString()); -// return session?.username; -// } -// return undefined; -// }; - -const getAttributeFromUser = (user: TestUserData, attrName: string): string | null => { - if ( - attrName && - user?.UserAttributes && - Array.isArray(user.UserAttributes) && - user.UserAttributes.length > 0 - ) { - const attribute = user.UserAttributes.find((attr) => attr?.Name == attrName); - return attribute?.Value || null; - } - return null; -}; - const generateIdToken = (user: TestUserData, authTime: number, expTime: number): string | null => { if (user) { return jwt.sign( @@ -213,6 +105,19 @@ const generateSessionToken = (user: TestUserData): string | null => { return null; }; +const getAttributeFromUser = (user: TestUserData, attrName: string): string | null => { + if ( + attrName && + user?.UserAttributes && + Array.isArray(user.UserAttributes) && + user.UserAttributes.length > 0 + ) { + const attribute = user.UserAttributes.find((attr) => attr?.Name == attrName); + return attribute?.Value || null; + } + return null; +}; + export const getRequestContext = (user?: TestUserData | string): APIGatewayEventRequestContext => { let username; if (user && typeof user === "string") { @@ -439,12 +344,7 @@ export const identityProviderServiceHandler = http.post< return passthrough(); }); -export type IdentityRequest = { - IdentityPoolId: string; - Logins: Record; -}; - -export const defaultHandlers = [ +export const cognitoHandlers = [ signInHandler, identityProviderServiceHandler, identityServiceHandler, diff --git a/mocks/handlers/api-security.ts b/mocks/handlers/aws/credentials.ts similarity index 83% rename from mocks/handlers/api-security.ts rename to mocks/handlers/aws/credentials.ts index d3b5408e90..e62255bef1 100644 --- a/mocks/handlers/api-security.ts +++ b/mocks/handlers/aws/credentials.ts @@ -1,5 +1,5 @@ import { http, HttpResponse } from "msw"; -import { ACCESS_KEY_ID, SECRET_KEY } from "../consts"; +import { ACCESS_KEY_ID, SECRET_KEY } from "../../consts"; const generateSessionToken = (): string | null => { if (process.env.MOCK_USER_USERNAME) { @@ -26,4 +26,4 @@ const defaultSecurityCredentialsHandler = http.get(/\/meta-data\/iam\/security-c }); }); -export const defaultHandlers = [defaultApiTokenHandler, defaultSecurityCredentialsHandler]; +export const credentialHandlers = [defaultApiTokenHandler, defaultSecurityCredentialsHandler]; diff --git a/mocks/handlers/aws/index.ts b/mocks/handlers/aws/index.ts new file mode 100644 index 0000000000..4197aafa7d --- /dev/null +++ b/mocks/handlers/aws/index.ts @@ -0,0 +1,14 @@ +import { cloudFormationHandlers } from "./cloudFormation"; +import { cognitoHandlers } from "./cognito"; +import { credentialHandlers } from "./credentials"; +import { secretsManagerHandlers } from "./secretsManager"; + +export const awsHandlers = [ + ...cloudFormationHandlers, + ...cognitoHandlers, + ...credentialHandlers, + ...secretsManagerHandlers +]; + +export { errorCloudFormationHandler } from "./cloudFormation"; +export { getRequestContext } from "./cognito"; diff --git a/mocks/handlers/secretsmanager.ts b/mocks/handlers/aws/secretsManager.ts similarity index 87% rename from mocks/handlers/secretsmanager.ts rename to mocks/handlers/aws/secretsManager.ts index 4bf7d34cb6..63fe010423 100644 --- a/mocks/handlers/secretsmanager.ts +++ b/mocks/handlers/aws/secretsManager.ts @@ -1,6 +1,6 @@ import { http, HttpResponse, PathParams } from "msw"; -import type { SecretManagerRequestBody } from ".."; -import secrets, { TEST_SECRET_ERROR_ID } from "../data/secrets"; +import type { SecretManagerRequestBody } from "../.."; +import secrets, { TEST_SECRET_ERROR_ID } from "../../data/secrets"; const defaultSecretHandler = http.post( `https://secretsmanager.us-east-1.amazonaws.com`, @@ -50,4 +50,4 @@ const defaultSecretHandler = http.post( }, ); -export const defaultHandlers = [defaultSecretHandler]; +export const secretsManagerHandlers = [defaultSecretHandler]; diff --git a/mocks/handlers/counties.ts b/mocks/handlers/counties.ts index 3387184443..f5a9950a64 100644 --- a/mocks/handlers/counties.ts +++ b/mocks/handlers/counties.ts @@ -26,4 +26,4 @@ const defaultCountiesHandler = http.get( }, ); -export const defaultHandlers = [defaultCountiesHandler]; +export const countiesHandlers = [defaultCountiesHandler]; diff --git a/mocks/handlers/index.ts b/mocks/handlers/index.ts index f2328daccc..de40f65572 100644 --- a/mocks/handlers/index.ts +++ b/mocks/handlers/index.ts @@ -1,13 +1,8 @@ import { http, HttpResponse } from "msw"; -import { defaultHandlers as apiTokenHandlers } from "./api-security.js"; -import { defaultHandlers as authHandlers } from "./auth.js"; -import { defaultHandlers as cloudFormationHandlers } from "./cloudformation.js"; -import { defaultHandlers as countiesHandler } from "./counties.js"; -import { defaultHandlers as itemHandlers } from "./items.js"; -import { defaultHandlers as searchHandlers } from "./opensearch.js"; -import { defaultHandlers as secretsManagerHandlers } from "./secretsmanager.js"; -import { defaultHandlers as submissionHandlers } from "./submissions.js"; -import { defaultHandlers as typeHandlers } from "./types.js"; +import { apiHandlers } from "./api"; +import { awsHandlers } from "./aws"; +import { opensearchHandlers } from "./opensearch"; +import { countiesHandlers } from "./counties"; export type Body = | Blob @@ -28,27 +23,33 @@ export const postOnceHandler = (endpoint: string, status: number = 200, body?: B { once: true }, ); +// Handlers that mock calls to the API +export const defaultApiHandlers = [ + ...apiHandlers, + ...countiesHandlers +] + +// Handlers that mock calls to 3rd party services from the API +export const defaultServiceHandlers = [ + ...awsHandlers, + ...opensearchHandlers, + ...countiesHandlers +] + export default [ - ...itemHandlers, - ...typeHandlers, - ...submissionHandlers, - ...countiesHandler, - ...authHandlers, - ...searchHandlers, - ...secretsManagerHandlers, - ...cloudFormationHandlers, - ...apiTokenHandlers, + ...apiHandlers, + ...awsHandlers, + ...opensearchHandlers, + ...countiesHandlers, ]; export { convertUserAttributes, - getRequestContext, - mockCurrentAuthenticatedUser, - mockUseGetUser, - mockUserAttributes, setDefaultReviewer, setDefaultStateSubmitter, setMockUsername, -} from "./auth.js"; +} from "./authUtils.js"; -export { errorCloudFormation } from "./cloudformation.js"; +export * from "./api"; +export * from "./aws"; +export * from "./opensearch"; diff --git a/mocks/handlers/opensearch.ts b/mocks/handlers/opensearch.ts deleted file mode 100644 index ec2311b099..0000000000 --- a/mocks/handlers/opensearch.ts +++ /dev/null @@ -1,301 +0,0 @@ -import { http, HttpResponse, PathParams } from "msw"; -import { GET_ERROR_ITEM_ID } from "../data"; -import items from "../data/items"; -import { - SearchQueryBody, - SearchTerm, - TestAppkDocument, - TestAppkItemResult, - TestChangelogDocument, - TestChangelogItemResult, - TestItemResult, - TestMainDocument, -} from "../index.d"; - -const defaultMainDocumentHandler = http.get( - `https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-main/_doc/:id`, - async ({ params }) => { - const { id } = params; - if (id == GET_ERROR_ITEM_ID) { - return new HttpResponse("Internal server error", { status: 500 }); - } - const itemId = id && Array.isArray(id) ? id[0] : id; - const item = items[itemId] || null; - - return item ? HttpResponse.json(item) : new HttpResponse(null, { status: 404 }); - }, -); - -const getFilterValue = ( - query: SearchTerm | SearchTerm[], - filterName: string, -): string | string[] | undefined => { - if (query) { - const rule: SearchTerm | undefined = Array.isArray(query) - ? (query as SearchTerm[]).find( - (rule) => - rule?.term?.[filterName] !== undefined || rule?.terms?.[filterName] !== undefined, - ) - : (query as SearchTerm); - - if (rule?.term?.[filterName]) { - return rule.term[filterName].toString(); - } - - if (rule?.terms?.[filterName]) { - return rule.terms[filterName].map((value: string) => value?.toString()); - } - } - return; -}; - -const getFilterKeys = (query: SearchTerm[] | SearchTerm): string[] => { - const filterKeys: string[] = []; - if (query) { - if (Array.isArray(query)) { - (query as SearchTerm[]).forEach((rule) => { - if (rule?.term !== undefined) { - filterKeys.push(...Object.keys(rule.term)); - } - if (rule?.terms !== undefined) { - filterKeys.push(...Object.keys(rule.terms)); - } - }); - } else { - if ((query as SearchTerm)?.term !== undefined) { - filterKeys.push(...Object.keys((query as SearchTerm).term)); - } - if ((query as SearchTerm)?.terms !== undefined) { - filterKeys.push(...Object.keys((query as SearchTerm).terms)); - } - } - } - return filterKeys; -}; - -function matchFilter( - item: T | null | undefined, - filterTerm: keyof T | null | undefined, - filterValue: string | string[] | null | undefined, -): boolean { - if (!item || !filterTerm || !filterValue) { - return false; - } - - const itemValue = item?.[filterTerm]?.toString()?.toLocaleLowerCase() || ""; - - if (Array.isArray(filterValue)) { - return filterValue.map((value) => value?.toString().toLocaleLowerCase()).includes(itemValue); - } - - return filterValue?.toString()?.toLocaleLowerCase() == itemValue; -} - -const filterItemResultByTerm = ( - hits: TestItemResult[], - filterTerm: keyof TestMainDocument, - filterValue: string | string[], -): TestItemResult[] => { - return hits.filter( - (hit) => hit?._source && matchFilter(hit._source, filterTerm, filterValue), - ); -}; - -const filterAppkChildrenByTerm = ( - hits: TestAppkItemResult[], - filterTerm: keyof TestAppkDocument, - filterValue: string | string[], -): TestAppkItemResult[] => { - return hits.filter( - (hit) => - hit?._source && - matchFilter(hit._source as TestAppkDocument, filterTerm, filterValue), - ); -}; - -const filterChangelogByTerm = ( - hits: TestChangelogItemResult[], - filterTerm: keyof TestChangelogDocument, - filterValue: string | string[], -): TestChangelogItemResult[] => { - return hits.filter( - (hit) => - hit?._source && - matchFilter( - hit._source as TestChangelogDocument, - filterTerm, - filterValue, - ), - ); -}; - -const defaultMainSearchHandler = http.post( - "https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-main/_search", - async ({ request }) => { - const { query } = await request.json(); - - if (query?.match_all == "throw-error") { - return new HttpResponse("Internal server error", { status: 500 }); - } - - const must = query?.bool?.must; - const mustTerms = must ? getFilterKeys(must) : []; - - // check if searching for appkChildren - if (mustTerms.includes("appkParentId.keyword") || mustTerms.includes("appkParentId")) { - const appkParentIdValue = - getFilterValue(must, "appkParentId.keyword") || getFilterValue(must, "appkParentId"); - - const appkParentId = - Array.isArray(appkParentIdValue) && appkParentIdValue.length > 0 - ? appkParentIdValue[0]?.toString() - : appkParentIdValue?.toString(); - - if (appkParentId == GET_ERROR_ITEM_ID) { - return new HttpResponse("Internal server error", { status: 500 }); - } - - const item = items[appkParentId || ""] || null; - - if (item?._source) { - let appkChildren: TestAppkItemResult[] = - (item._source?.appkChildren as TestAppkItemResult[]) || []; - if (appkChildren.length > 0) { - mustTerms.forEach((term) => { - const filterValue = getFilterValue(must, term); - const filterTerm: keyof TestAppkDocument = term.replace( - ".keyword", - "", - ) as keyof TestAppkDocument; - if (filterValue) { - appkChildren = filterAppkChildrenByTerm(appkChildren, filterTerm, filterValue); - } - }); - } - - return HttpResponse.json({ - took: 5, - timed_out: false, - _shards: { - total: 5, - successful: 5, - skipped: 0, - failed: 0, - }, - hits: { - total: { - value: appkChildren.length, - relation: "eq", - }, - max_score: null, - hits: appkChildren, - }, - }); - } - } - - let itemHits: TestItemResult[] = Object.values(items) || []; - - if (itemHits.length > 0) { - mustTerms.forEach((term) => { - const filterValue = getFilterValue(must, term); - const filterTerm: keyof TestMainDocument = term.replace( - ".keyword", - "", - ) as keyof TestMainDocument; - if (filterValue) { - itemHits = filterItemResultByTerm(itemHits, filterTerm, filterValue); - } - }); - } - - return HttpResponse.json({ - took: 5, - timed_out: false, - _shards: { - total: 5, - successful: 5, - skipped: 0, - failed: 0, - }, - hits: { - total: { - value: itemHits.length, - relation: "eq", - }, - max_score: null, - hits: itemHits, - }, - }); - }, -); - -const defaultChangelogSearchHandler = http.post( - "https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-changelog/_search", - async ({ request }) => { - const { query } = await request.json(); - const must = query?.bool?.must; - const mustTerms = must ? getFilterKeys(must) : []; - - const packageIdValue = getFilterValue(must, "packageId.keyword"); - - if (!packageIdValue) { - return new HttpResponse("No packageId provided", { status: 400 }); - } - - const packageId = - Array.isArray(packageIdValue) && packageIdValue.length > 0 - ? packageIdValue[0]?.toString() - : packageIdValue?.toString(); - - if (packageId == GET_ERROR_ITEM_ID) { - return new HttpResponse("Internal server error", { status: 500 }); - } - - const item = items[packageId] || null; - - if (item?._source) { - let changelog: TestChangelogItemResult[] = - (item._source?.changelog as TestChangelogItemResult[]) || []; - if (changelog.length > 0) { - mustTerms.forEach((term) => { - const filterValue = getFilterValue(must, term); - const filterTerm: keyof TestChangelogDocument = term.replace( - ".keyword", - "", - ) as keyof TestChangelogDocument; - if (filterValue) { - changelog = filterChangelogByTerm(changelog, filterTerm, filterValue); - } - }); - } - - return HttpResponse.json({ - took: 5, - timed_out: false, - _shards: { - total: 5, - successful: 5, - skipped: 0, - failed: 0, - }, - hits: { - total: { - value: changelog.length, - relation: "eq", - }, - max_score: null, - hits: changelog, - }, - }); - } - - return new HttpResponse(null, { status: 404 }); - }, -); - -export const defaultHandlers = [ - defaultMainDocumentHandler, - defaultMainSearchHandler, - defaultChangelogSearchHandler, -]; diff --git a/mocks/handlers/opensearch/changelog.ts b/mocks/handlers/opensearch/changelog.ts new file mode 100644 index 0000000000..bdaa09f03d --- /dev/null +++ b/mocks/handlers/opensearch/changelog.ts @@ -0,0 +1,71 @@ +import { http, HttpResponse, PathParams } from "msw"; +import { GET_ERROR_ITEM_ID } from "../../data"; +import items from "../../data/items"; +import { SearchQueryBody, TestChangelogDocument, TestChangelogItemResult } from "../../index.d"; +import { getTermKeys, getTermValues, filterItemsByTerm } from "./util"; + +const defaultChangelogSearchHandler = http.post( + "https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-changelog/_search", + async ({ request }) => { + const { query } = await request.json(); + const must = query?.bool?.must; + const mustTerms = must ? getTermKeys(must) : []; + + const packageIdValue = getTermValues(must, "packageId.keyword") || getTermValues(must, "packageId"); + + if (!packageIdValue) { + return new HttpResponse("No packageId provided", { status: 400 }); + } + + const packageId = + Array.isArray(packageIdValue) && packageIdValue.length > 0 + ? packageIdValue[0]?.toString() + : packageIdValue?.toString(); + + if (packageId == GET_ERROR_ITEM_ID) { + return new HttpResponse("Internal server error", { status: 500 }); + } + + const item = items[packageId] || null; + + if (item?._source) { + let changelog: TestChangelogItemResult[] = + (item._source?.changelog as TestChangelogItemResult[]) || []; + if (changelog.length > 0) { + mustTerms.forEach((term) => { + const filterValue = getTermValues(must, term); + const filterTerm: keyof TestChangelogDocument = term.replace( + ".keyword", + "", + ) as keyof TestChangelogDocument; + if (filterValue) { + changelog = filterItemsByTerm(changelog, filterTerm, filterValue); + } + }); + } + + return HttpResponse.json({ + took: 5, + timed_out: false, + _shards: { + total: 5, + successful: 5, + skipped: 0, + failed: 0, + }, + hits: { + total: { + value: changelog.length, + relation: "eq", + }, + max_score: null, + hits: changelog, + }, + }); + } + + return new HttpResponse(null, { status: 404 }); + }, +); + +export const changelogSearchHandlers = [defaultChangelogSearchHandler]; diff --git a/mocks/handlers/opensearch/index.ts b/mocks/handlers/opensearch/index.ts new file mode 100644 index 0000000000..b23018a659 --- /dev/null +++ b/mocks/handlers/opensearch/index.ts @@ -0,0 +1,11 @@ +import { changelogSearchHandlers } from "./changelog"; +import { mainSearchHandlers } from "./main"; +import { typeSearchHandlers } from "./types" +import { subtypeSearchHandlers } from "./subtypes"; + +export const opensearchHandlers = [ + ...changelogSearchHandlers, + ...mainSearchHandlers, + ...typeSearchHandlers, + ...subtypeSearchHandlers, +]; diff --git a/mocks/handlers/opensearch/main.ts b/mocks/handlers/opensearch/main.ts new file mode 100644 index 0000000000..9617c9b4ba --- /dev/null +++ b/mocks/handlers/opensearch/main.ts @@ -0,0 +1,131 @@ +import { http, HttpResponse, PathParams } from "msw"; +import { GET_ERROR_ITEM_ID } from "../../data"; +import items from "../../data/items"; +import { + SearchQueryBody, + TestAppkDocument, + TestAppkItemResult, + TestItemResult, + TestMainDocument, +} from "../../index.d"; +import { getTermKeys, filterItemsByTerm, getTermValues } from "./util"; + +const defaultMainDocumentHandler = http.get( + `https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-main/_doc/:id`, + async ({ params }) => { + const { id } = params; + if (id == GET_ERROR_ITEM_ID) { + return new HttpResponse("Internal server error", { status: 500 }); + } + const itemId = id && Array.isArray(id) ? id[0] : id; + const item = items[itemId] || null; + + return item ? HttpResponse.json(item) : new HttpResponse(null, { status: 404 }); + }, +); + +const defaultMainSearchHandler = http.post( + "https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-main/_search", + async ({ request }) => { + const { query } = await request.json(); + console.log({ query }) + + if (query?.match_all?.id == "throw-error") { + return new HttpResponse("Internal server error", { status: 500 }); + } + + const must = query?.bool?.must; + console.log("must: ", JSON.stringify(must)) + const mustTerms = getTermKeys(must); + console.log({ mustTerms }) + + const appkParentIdValue = getTermValues(must, "appkParentId.keyword") || getTermValues(must, "appkParentId"); + + if (appkParentIdValue) { + const appkParentId = + Array.isArray(appkParentIdValue) && appkParentIdValue.length > 0 + ? appkParentIdValue[0]?.toString() + : appkParentIdValue?.toString(); + + if (appkParentId == GET_ERROR_ITEM_ID) { + return new HttpResponse("Internal server error", { status: 500 }); + } + + const item = items[appkParentId || ""] || null; + + if (item?._source) { + let appkChildren: TestAppkItemResult[] = + (item._source?.appkChildren as TestAppkItemResult[]) || []; + if (appkChildren.length > 0) { + mustTerms.forEach((term) => { + const filterValue = getTermValues(must, term); + const filterTerm: keyof TestAppkDocument = term.replace( + ".keyword", + "", + ) as keyof TestAppkDocument; + if (filterValue) { + appkChildren = filterItemsByTerm(appkChildren, filterTerm, filterValue); + } + }); + } + + return HttpResponse.json({ + took: 5, + timed_out: false, + _shards: { + total: 5, + successful: 5, + skipped: 0, + failed: 0, + }, + hits: { + total: { + value: appkChildren.length, + relation: "eq", + }, + max_score: null, + hits: appkChildren, + }, + }); + } + } + + let itemHits: TestItemResult[] = Object.values(items) || []; + + if (itemHits.length > 0) { + mustTerms.forEach((term) => { + const filterValue = getTermValues(must, term); + console.log({ filterValue }) + const filterTerm: keyof TestMainDocument = term.replace( + ".keyword", + "", + ) as keyof TestMainDocument; + console.log({ filterTerm }) + if (filterValue) { + itemHits = filterItemsByTerm(itemHits, filterTerm, filterValue); + } + }); + } + + return HttpResponse.json({ + took: 5, + timed_out: false, + _shards: { + total: 5, + successful: 5, + skipped: 0, + failed: 0, + }, + hits: { + total: { + value: itemHits.length, + relation: "eq", + }, + max_score: null, + hits: itemHits, + }, + }); + }, +); + +export const mainSearchHandlers = [defaultMainDocumentHandler, defaultMainSearchHandler]; diff --git a/mocks/handlers/opensearch/subtypes.ts b/mocks/handlers/opensearch/subtypes.ts new file mode 100644 index 0000000000..d6b3a5058f --- /dev/null +++ b/mocks/handlers/opensearch/subtypes.ts @@ -0,0 +1,48 @@ +import { http, HttpResponse, PathParams } from "msw"; +import { subtypes, ERROR_AUTHORITY_ID } from "../../data/types" +import { + SearchQueryBody, +} from "../../index.d"; +import { getFilterValue } from "./util"; + +const defaultSubtypeSearchHandler = http.post( + "https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-subtypes/_search", + async ({ request }) => { + const { query } = await request.json(); + const must = query?.bool?.must; + + const authorityId = getFilterValue(must, 'match', 'authorityId'); + const typeIds = getFilterValue(must, 'terms', 'typeId') || []; + + if (authorityId === ERROR_AUTHORITY_ID) { + return new HttpResponse("Internal server error", { status: 500 }); + } + + const hits = subtypes.filter(type => + type?._source?.authorityId == authorityId + && typeIds.includes(type?._source?.typeId) + && !type?._source?.name.match(/Do Not Use/) + ) || [] + + return HttpResponse.json({ + took: 5, + timed_out: false, + _shards: { + total: 5, + successful: 5, + skipped: 0, + failed: 0, + }, + hits: { + total: { + value: hits.length, + relation: "eq", + }, + max_score: null, + hits, + }, + }); + }, +); + +export const subtypeSearchHandlers = [defaultSubtypeSearchHandler]; diff --git a/mocks/handlers/opensearch/types.ts b/mocks/handlers/opensearch/types.ts new file mode 100644 index 0000000000..f81f9abff4 --- /dev/null +++ b/mocks/handlers/opensearch/types.ts @@ -0,0 +1,41 @@ +import { http, HttpResponse, PathParams } from "msw"; +import { types, ERROR_AUTHORITY_ID } from "../../data/types" +import { SearchQueryBody } from "../../index.d"; +import { getFilterValue } from "./util"; + +const defaultTypeSearchHandler = http.post( + "https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-types/_search", + async ({ request }) => { + const { query } = await request.json(); + const must = query?.bool?.must; + + const authorityId = getFilterValue(must, 'match', 'authorityId'); + + if (authorityId === ERROR_AUTHORITY_ID) { + return new HttpResponse("Internal server error", { status: 500 }); + } + + const hits = types.filter(type => type?._source?.authorityId == authorityId && !type?._source?.name.match(/Do Not Use/)) || [] + + return HttpResponse.json({ + took: 5, + timed_out: false, + _shards: { + total: 5, + successful: 5, + skipped: 0, + failed: 0, + }, + hits: { + total: { + value: hits.length, + relation: "eq", + }, + max_score: null, + hits, + }, + }); + }, +); + +export const typeSearchHandlers = [defaultTypeSearchHandler]; diff --git a/mocks/handlers/opensearch/util.ts b/mocks/handlers/opensearch/util.ts new file mode 100644 index 0000000000..9f26b4011a --- /dev/null +++ b/mocks/handlers/opensearch/util.ts @@ -0,0 +1,100 @@ +import { QueryContainer, TermQuery, TermsQuery, TestHit } from "../../index.d"; + +export const getFilterValue = ( + query: QueryContainer | QueryContainer[] | undefined, + queryKey: keyof QueryContainer, + filterName: string, +): string | string[] | undefined => { + if (query) { + const rules: QueryContainer[] = (Array.isArray(query)) ? query : [query]; + const values: string[] = []; + rules.forEach(rule => { + if (rule?.[queryKey]?.[filterName] !== undefined) { + if (Array.isArray(rule[queryKey][filterName])) { + rule[queryKey][filterName].forEach(value => { + if (value !== undefined) { + values.push(value.toString()) + } + }) + } else { + values.push(rule[queryKey][filterName].toString()); + } + } + }) + + if (values.length === 0) return undefined; + if (values.length === 1) return values[0].toString(); + + return values.map(value => value.toString()); + } + return undefined; +}; + +export const getTermValues = ( + query: QueryContainer | QueryContainer[] | undefined, + filterName: string, +): string | string[] | undefined => { + const term = getFilterValue(query, 'term', filterName); + const terms = getFilterValue(query, 'terms', filterName); + + if (term && terms) { + const values: string[] = []; + values.concat(Array.isArray(term) ? term : [term]) + values.concat(Array.isArray(terms) ? terms : [terms]); + return values; + } + + return term || terms; +} + +export const getTermKeys = (query: QueryContainer[] | QueryContainer | undefined): string[] => { + const filterKeys: string[] = []; + if (query) { + if (Array.isArray(query)) { + (query as QueryContainer[]).forEach((rule) => { + if (rule?.term !== undefined) { + filterKeys.push(...Object.keys(rule.term)); + } + if (rule?.terms !== undefined) { + filterKeys.push(...Object.keys(rule.terms)); + } + }); + } else { + if ((query as QueryContainer)?.term !== undefined) { + filterKeys.push(...Object.keys((query.term as Record))); + } + if ((query as QueryContainer)?.terms !== undefined) { + filterKeys.push(...Object.keys((query.terms as TermsQuery))); + } + } + } + return filterKeys; +}; + +export const matchFilter = ( + item: T | null | undefined, + filterTerm: keyof T | null | undefined, + filterValue: string | string[] | null | undefined, +): boolean => { + if (!item || !filterTerm || !filterValue) { + return false; + } + + const itemValue = item?.[filterTerm]?.toString()?.toLocaleLowerCase() || ""; + + if (Array.isArray(filterValue)) { + return filterValue.map((value) => value?.toString().toLocaleLowerCase()).includes(itemValue); + } + + return filterValue?.toString()?.toLocaleLowerCase() == itemValue; +} + +export const filterItemsByTerm = ( + hits: TestHit[], + filterTerm: keyof D, + filterValue: string | string[] +): TestHit[] => { + return hits.filter( + (hit) => (hit as TestHit)?._source && matchFilter((hit._source as D), filterTerm, filterValue) + ) +} diff --git a/mocks/handlers/types.ts b/mocks/handlers/types.ts deleted file mode 100644 index 4c16d4e390..0000000000 --- a/mocks/handlers/types.ts +++ /dev/null @@ -1,46 +0,0 @@ -import { http, HttpResponse } from "msw"; -import types from "../data/types"; - -type GetTypesBody = { authorityId: number }; -type GetSubTypesBody = { authorityId: number; typeIds: number[] }; - -const defaultTypeHandler = http.post(/\/getTypes$/, async ({ request }) => { - const { authorityId } = await request.json(); - - if (authorityId === -1) { - throw Error("useGetTypes > mockFetch: Expected error thrown by test."); - } - - return HttpResponse.json({ - hits: { - hits: types.filter( - (item) => item._source.authorityId === authorityId && !item._source.typeId, - ), - }, - }); -}); - -const defaultSubTypesHandler = http.post( - /\/getSubTypes$/, - async ({ request }) => { - const { authorityId, typeIds } = await request.json(); - - if (authorityId === -1) { - throw Error("useGetSubTypes > mockFetch: Expected error thrown by test."); - } - - const filteredData = types.filter( - (item) => - item._source.authorityId === authorityId && - typeIds.some((typeId) => item._source.typeId === typeId), - ); - - return HttpResponse.json({ - hits: { - hits: filteredData, - }, - }); - }, -); - -export const defaultHandlers = [defaultTypeHandler, defaultSubTypesHandler]; diff --git a/mocks/index.d.ts b/mocks/index.d.ts index 1619e7d9cf..5486c8e1b8 100644 --- a/mocks/index.d.ts +++ b/mocks/index.d.ts @@ -1,6 +1,4 @@ -import type { Common, Search_RequestBody, TermQuery } from "@opensearch-project/opensearch"; import type { APIGatewayEventRequestContext, UserData, opensearch } from "shared-types"; - import type { Export } from "@aws-sdk/client-cloudformation"; import type { GetSecretValueCommandOutput } from "@aws-sdk/client-secrets-manager"; @@ -9,6 +7,8 @@ export type DeepPartial = { [P in keyof T]?: DeepPartial; }; +export type TestHit = DeepPartial>; + export type TestUserData = DeepPartial; export type TestItemResult = DeepPartial; @@ -23,6 +23,14 @@ export type TestChangelogItemResult = DeepPartial; + +export type TestTypeDocument = TestTypeItemResult["_source"]; + +export type TestSubtypeItemResult = DeepPartial; + +export type TestSubtypeDocument = TestSubtypeItemResult["_source"]; + export type TestSecretData = Partial> & { CreatedDate: number; DeletedDate?: number; @@ -30,6 +38,12 @@ export type TestSecretData = Partial; + +export type IdentityRequest = { + IdentityPoolId: string; + Logins: Record; +}; + export type IdpRequestSessionBody = { AccessToken: string; }; @@ -52,11 +66,64 @@ export type SecretManagerRequestBody = { SecretId: string; }; -export type GetItemBody = { id: string }; -export type SearchQueryBody = Search_RequestBody; +type FieldValue = boolean | undefined | number | string +type MinimumShouldMatch = number | string +type TermsLookup = { + id?: string; + index?: string; + path?: string; + routing?: string; +} +type TermsQueryField = FieldValue[] | TermsLookup +type QueryBase = { + _name?: string; + boost?: number; +} +type MatchQuery = FieldValue | (QueryBase & { + analyzer?: string; + auto_generate_synonyms_phrase_query?: boolean; + cutoff_frequency?: number; + query: FieldValue; +}) +type MatchAllQuery = QueryBase & Record; +export type TermQuery = FieldValue | (QueryBase & { + case_insensitive?: boolean; + value: FieldValue; +}); +export type TermsQuery = QueryBase & { + _name?: any; + boost?: any; + [key: string]: any | TermsQueryField; +} +type QueryContainer = { + match?: Record; + match_all?: MatchAllQuery; + term?: Record; + terms?: TermsQuery; +}; +type BoolQuery = QueryBase & { + adjust_pure_negative?: boolean; + filter?: QueryContainer | QueryContainer[]; + minimum_should_match?: MinimumShouldMatch; + must?: QueryContainer | QueryContainer[]; + must_not?: QueryContainer | QueryContainer[]; + should?: QueryContainer | QueryContainer[]; +} + +export type SearchQueryBody = { + from?: number; + search?: string; + query?: { + bool: BoolQuery + match_all?: MatchAllQuery; + }; + size?: number; + sortDirection?: string; + sortField?: string; +} -export type SearchTerm = Record; +export type GetItemBody = { id: string }; export type EventRequestContext = Partial; diff --git a/mocks/package.json b/mocks/package.json index c7054dc32f..c448984904 100644 --- a/mocks/package.json +++ b/mocks/package.json @@ -9,7 +9,7 @@ "build": "tsc" }, "dependencies": { - "@opensearch-project/opensearch": "^2.3.0", + "@opensearch-project/opensearch": "^2.13.0", "@types/jsonwebtoken": "9.0.7", "amazon-cognito-identity-js": "6.3.12", "aws-lambda": "1.0.7", diff --git a/mocks/server.ts b/mocks/server.ts index f764c386e3..286711b8b3 100644 --- a/mocks/server.ts +++ b/mocks/server.ts @@ -1,4 +1,8 @@ import { setupServer } from "msw/node"; -import handlers from "./handlers"; +import handlers, { defaultApiHandlers, defaultServiceHandlers } from "./handlers"; export const mockedServer = setupServer(...handlers); + +export const mockedApiServer = setupServer(...defaultApiHandlers); + +export const mockedServiceServer = setupServer(...defaultServiceHandlers); diff --git a/react-app/src/api/useGetTypes.test.ts b/react-app/src/api/useGetTypes.test.ts index 7e6a835ba4..37bcb75cd4 100644 --- a/react-app/src/api/useGetTypes.test.ts +++ b/react-app/src/api/useGetTypes.test.ts @@ -1,52 +1,60 @@ import { describe, expect, it } from "vitest"; import { fetchData } from "./useGetTypes"; +import { + MEDICAID_SPA_AUTHORITY_ID, + CHIP_SPA_AUTHORITY_ID, + NOT_FOUND_AUTHORITY_ID, + ERROR_AUTHORITY_ID, + TYPE_ONE_ID, + TYPE_TWO_ID, + TYPE_THREE_ID, + DO_NOT_USE_TYPE_ID, + medicaidTypes, + medicaidSubtypes, + chipTypes, + chipSubtypes +} from "mocks/data/types" describe("fetchData", () => { describe("fetchTypes", () => { it("makes an AWS Amplify post request for types", async () => { - const types = await fetchData({ authorityId: 1 }); - expect(types).toEqual([ - { id: 101, authorityId: 1, name: "typeOne" }, - { id: 102, authorityId: 1, name: "typetwo" }, - ]); + const types = await fetchData({ authorityId: MEDICAID_SPA_AUTHORITY_ID }); + expect(types).toEqual(medicaidTypes.map(type => type?._source)); }); it("successfully fetches types for a given authorityId", async () => { - const types = await fetchData({ authorityId: 2 }); - expect(types).toEqual([{ id: 103, authorityId: 2, name: "typethree" }]); + const types = await fetchData({ authorityId: CHIP_SPA_AUTHORITY_ID }); + expect(types).toEqual(chipTypes.map(type => type?._source)); }); it("returns an empty array when there are no types", async () => { - const types = await fetchData({ authorityId: 3 }); + const types = await fetchData({ authorityId: NOT_FOUND_AUTHORITY_ID }); expect(types).toEqual([]); }); it("throws an error when fetch fails", async () => { - await expect(fetchData({ authorityId: -1 })).rejects.toThrow("Failed to fetch types"); + await expect(fetchData({ authorityId: ERROR_AUTHORITY_ID })).rejects.toThrow("Failed to fetch types"); }); }); describe("fetchSubTypes", () => { it("makes an AWS Amplify post request for subtypes", async () => { - const subtypes = await fetchData({ authorityId: 1, typeIds: [1, 2] }); - expect(subtypes).toEqual([ - { id: 101, authorityId: 1, name: "subtypeOne", typeId: 1 }, - { id: 102, authorityId: 1, name: "subtypetwo", typeId: 2 }, - ]); + const subtypes = await fetchData({ authorityId: MEDICAID_SPA_AUTHORITY_ID, typeIds: [TYPE_ONE_ID, TYPE_TWO_ID] }); + expect(subtypes).toEqual(medicaidSubtypes.map(subtype => subtype?._source)); }); it("successfully fetches subtypes for a given authorityId and typeIds", async () => { - const subtypes = await fetchData({ authorityId: 2, typeIds: [4] }); - expect(subtypes).toEqual([{ id: 104, authorityId: 2, name: "subtypethree", typeId: 4 }]); + const subtypes = await fetchData({ authorityId: CHIP_SPA_AUTHORITY_ID, typeIds: [TYPE_THREE_ID, DO_NOT_USE_TYPE_ID] }); + expect(subtypes).toEqual(chipSubtypes.map(subtype => subtype?._source)); }); it("returns an empty array when there are no subtypes", async () => { - const subtypes = await fetchData({ authorityId: 3, typeIds: [4, 5] }); + const subtypes = await fetchData({ authorityId: CHIP_SPA_AUTHORITY_ID, typeIds: [DO_NOT_USE_TYPE_ID] }); expect(subtypes).toEqual([]); }); it("throws an error when fetch fails", async () => { - await expect(fetchData({ authorityId: -1, typeIds: [] })).rejects.toThrow( + await expect(fetchData({ authorityId: ERROR_AUTHORITY_ID, typeIds: [] })).rejects.toThrow( "Failed to fetch subtypes", ); }); diff --git a/react-app/src/api/useGetTypes.ts b/react-app/src/api/useGetTypes.ts index ffa9feecbc..89a86be05c 100644 --- a/react-app/src/api/useGetTypes.ts +++ b/react-app/src/api/useGetTypes.ts @@ -4,8 +4,8 @@ import { opensearch, ReactQueryApiError } from "shared-types"; import { subtypes, types } from "shared-types/opensearch"; type FetchOptions = { - authorityId: number; - typeIds?: number[]; + authorityId: number | string; + typeIds?: number[] | string[]; }; export async function fetchData({ @@ -47,15 +47,15 @@ export function useGetData( } export function useGetTypes( - authorityId: number, + authorityId: number | string, options?: UseQueryOptions, ) { return useGetData({ authorityId }, options); } export function useGetSubTypes( - authorityId: number, - typeIds: number[], + authorityId: number | string, + typeIds: number[] | string [], options?: UseQueryOptions, ) { return useGetData( diff --git a/react-app/vitest.setup.ts b/react-app/vitest.setup.ts index 86a83aa50e..fb52fdd2ce 100644 --- a/react-app/vitest.setup.ts +++ b/react-app/vitest.setup.ts @@ -9,7 +9,7 @@ import { setDefaultStateSubmitter, setMockUsername, } from "mocks"; -import { mockedServer } from "mocks/server"; +import { mockedApiServer as mockedServer } from "mocks/server"; import { afterAll, afterEach, beforeAll, expect, vi } from "vitest"; // TODO to mock diff --git a/vitest.config.ts b/vitest.config.ts index 58ab460cf7..3a81640c05 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -24,7 +24,6 @@ export default defineConfig({ "lib/packages/eslint-config-custom-server/**", "lib/local-aspects", "lib/local-constructs/**", - "lib/libs/email/content/**", "bin/cli/**", "bin/app.ts", "vitest.workspace.ts", diff --git a/vitest.workspace.ts b/vitest.workspace.ts index e4d61c7ed2..70dbaa6da9 100644 --- a/vitest.workspace.ts +++ b/vitest.workspace.ts @@ -1,4 +1,4 @@ import { defineWorkspace } from "vitest/config"; // defineWorkspace provides a nice type hinting DX -export default defineWorkspace(["react-app", "lib", "lib/libs/email/content"]); +export default defineWorkspace(["react-app", "lib"]); From 7e67e39d9a144788e4ad49add751cc865774073b Mon Sep 17 00:00:00 2001 From: Tiffany Forkner Date: Thu, 19 Dec 2024 13:04:03 -0500 Subject: [PATCH 3/5] Mocking cpoc tests (#948) * mocking cpoc search --- .vscode/settings.json | 7 +- lib/lambda/getCpocs.test.ts | 63 ++++++----------- mocks/data/cpocs.ts | 101 +++++++++++++++++++++++++++ mocks/handlers/aws/cloudFormation.ts | 2 +- mocks/handlers/opensearch/cpocs.ts | 36 ++++++++++ mocks/handlers/opensearch/index.ts | 4 ++ 6 files changed, 169 insertions(+), 44 deletions(-) create mode 100644 mocks/data/cpocs.ts create mode 100644 mocks/handlers/opensearch/cpocs.ts diff --git a/.vscode/settings.json b/.vscode/settings.json index b4d478340a..f2e33e6d9e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,5 +3,10 @@ "tailwindCSS.experimental.classRegex": [ ["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"] ], - "typescript.tsdk": "node_modules/typescript/lib" + "typescript.tsdk": "node_modules/typescript/lib", + "cSpell.words": [ + "Cpoc", + "Cpocs", + "opensearch" + ] } diff --git a/lib/lambda/getCpocs.test.ts b/lib/lambda/getCpocs.test.ts index 1477657142..7765ca6b9a 100644 --- a/lib/lambda/getCpocs.test.ts +++ b/lib/lambda/getCpocs.test.ts @@ -1,72 +1,51 @@ -import { describe, it, expect, vi, beforeEach } from "vitest"; +import { describe, it, expect } from "vitest"; import { APIGatewayEvent } from "aws-lambda"; import { handler } from "./getCpocs"; -import { response } from "libs/handler-lib"; -import * as os from "libs/opensearch-lib"; - -vi.mock("libs/handler-lib", () => ({ - response: vi.fn(), -})); - -vi.mock("libs/opensearch-lib", () => ({ - search: vi.fn(), -})); +import { mockedServiceServer } from "mocks/server"; +import { emptyCpocSearchHandler, errorCpocSearchHandler } from "mocks"; +import { cpocs } from "mocks/data/cpocs"; describe("getCpocs Handler", () => { - beforeEach(() => { - vi.clearAllMocks(); - process.env.osDomain = "test-domain"; // Set the environment variable before each test - process.env.indexNamespace = "test-namespace-"; // Set the environment variable before each test - }); - it("should return 400 if event body is missing", async () => { const event = {} as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 400, - body: { message: "Event body required" }, - }); + expect(res.statusCode).toEqual(400); + expect(res.body).toEqual(JSON.stringify({ message: "Event body required" })) }); + // TODO - should this be removed? when will the result be empty and not + // just a result with an empty hit array it("should return 400 if no Cpocs are found", async () => { - (os.search as vi.Mock).mockResolvedValueOnce(null); + mockedServiceServer.use(emptyCpocSearchHandler); const event = { body: JSON.stringify({}) } as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 400, - body: { message: "No Cpocs found" }, - }); + expect(res.statusCode).toEqual(400); + expect(res.body).toEqual(JSON.stringify({ message: "No Cpocs found" })) }); it("should return 200 with the result if Cpocs are found", async () => { - const mockResult = { hits: { hits: [{ _source: { name: "test-cpoc" } }] } }; - (os.search as vi.Mock).mockResolvedValueOnce(mockResult); - const event = { body: JSON.stringify({}) } as APIGatewayEvent; - await handler(event); + const res = await handler(event); + const body = JSON.parse(res.body); - expect(response).toHaveBeenCalledWith({ - statusCode: 200, - body: mockResult, - }); + expect(res.statusCode).toEqual(200); + expect(body.hits.hits).toEqual(cpocs); }); it("should return 500 if an error occurs during processing", async () => { - (os.search as vi.Mock).mockRejectedValueOnce(new Error("Test error")); + mockedServiceServer.use(errorCpocSearchHandler); const event = { body: JSON.stringify({}) } as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 500, - body: { message: "Internal server error" }, - }); + expect(res.statusCode).toEqual(500); + expect(res.body).toEqual(JSON.stringify({ error: "Internal server error", message: "Response Error" })) }); }); diff --git a/mocks/data/cpocs.ts b/mocks/data/cpocs.ts new file mode 100644 index 0000000000..bb240840a1 --- /dev/null +++ b/mocks/data/cpocs.ts @@ -0,0 +1,101 @@ +export const MUHAMMAD_BASHAR_ID = ""; +export const ELTON_BEATTY_ID = ""; +export const JEDIDIAH_HAYES_ID = ""; +export const MARSHALL_HENDERSON_ID = ""; +export const BRIDGET_HERMANN_ID = ""; +export const MAGGIE_LOWENSTEIN_ID = ""; +export const THOMAS_MANN_ID = ""; +export const DESIREE_MAYER_ID = ""; +export const WINSTON_OCONNOR_ID = ""; +export const MACY_TREMBLAY_ID = ""; + +export const cpocs = [ + { + _id: MUHAMMAD_BASHAR_ID, + _source: { + id: MUHAMMAD_BASHAR_ID, + firstName: "Muhammad", + lastName: "Bashar", + email: "muhammad.bashar@example.com" + } + }, + { + _id: ELTON_BEATTY_ID, + _source: { + id: ELTON_BEATTY_ID, + firstName: "Elton", + lastName: "Beatty", + email: "elton.beatty@example.com" + } + }, + { + _id: JEDIDIAH_HAYES_ID, + _source: { + id: JEDIDIAH_HAYES_ID, + firstName: "Jedidiah", + lastName: "Hayes", + email: "jedidiah.hayes@example.com" + } + }, + { + _id: MARSHALL_HENDERSON_ID, + _source: { + id: MARSHALL_HENDERSON_ID, + firstName: "Marshall", + lastName: "Henderson", + email: "marshall.henderson@example.com" + } + }, + { + _id: BRIDGET_HERMANN_ID, + _source: { + id: BRIDGET_HERMANN_ID, + firstName: "Bridget", + lastName: "Hermann", + email: "bridget.hermann@example.com" + } + },{ + _id: MAGGIE_LOWENSTEIN_ID, + _source: { + id: MAGGIE_LOWENSTEIN_ID, + firstName: "Maggie", + lastName: "Lowenstein", + email: "maggie.lowenstein@example.com" + } + }, + { + _id: THOMAS_MANN_ID, + _source: { + id: THOMAS_MANN_ID, + firstName: "Thomas", + lastName: "Mann", + email: "thomas.mann@example.com" + } + }, + { + _id: DESIREE_MAYER_ID, + _source: { + id: DESIREE_MAYER_ID, + firstName: "Desiree", + lastName: "Mayer", + email: "desiree.mayer@example.com" + } + },{ + _id: WINSTON_OCONNOR_ID, + _source: { + id: WINSTON_OCONNOR_ID, + firstName: "Winston", + lastName: "O'Connor", + email: "winston.oconnor@example.com" + } + }, + { + _id: MACY_TREMBLAY_ID, + _source: { + id: MACY_TREMBLAY_ID, + firstName: "Macy", + lastName: "Tremblay", + email: "macy.tremblay@example.com" + } + }, +] diff --git a/mocks/handlers/aws/cloudFormation.ts b/mocks/handlers/aws/cloudFormation.ts index 5d4a965733..69f17a4865 100644 --- a/mocks/handlers/aws/cloudFormation.ts +++ b/mocks/handlers/aws/cloudFormation.ts @@ -15,7 +15,7 @@ export const errorCloudFormationHandler = http.post( status: 503, statusText: "ServiceUnavailable", }, - ), + ) ); const defaultCloudFormationHandler = http.post( diff --git a/mocks/handlers/opensearch/cpocs.ts b/mocks/handlers/opensearch/cpocs.ts new file mode 100644 index 0000000000..7a1ec302e9 --- /dev/null +++ b/mocks/handlers/opensearch/cpocs.ts @@ -0,0 +1,36 @@ +import { http, HttpResponse } from "msw"; +import { cpocs } from "../../data/cpocs"; + +const defaultCpocSearchHandler = http.post( + "https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-cpocs/_search", + () => HttpResponse.json({ + "took": 3, + "timed_out": false, + "_shards": { + "total": 5, + "successful": 5, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 654, + "relation": "eq" + }, + "max_score": 1, + "hits": cpocs + } + }) +) + +export const emptyCpocSearchHandler = http.post( + "https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-cpocs/_search", + () => new HttpResponse() +); + +export const errorCpocSearchHandler = http.post( + "https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-cpocs/_search", + () => new HttpResponse("Internal server error", { status: 500 }) +); + +export const cpocSearchHandlers = [defaultCpocSearchHandler]; diff --git a/mocks/handlers/opensearch/index.ts b/mocks/handlers/opensearch/index.ts index b23018a659..2ced771efb 100644 --- a/mocks/handlers/opensearch/index.ts +++ b/mocks/handlers/opensearch/index.ts @@ -1,11 +1,15 @@ import { changelogSearchHandlers } from "./changelog"; +import { cpocSearchHandlers } from "./cpocs"; import { mainSearchHandlers } from "./main"; import { typeSearchHandlers } from "./types" import { subtypeSearchHandlers } from "./subtypes"; export const opensearchHandlers = [ ...changelogSearchHandlers, + ...cpocSearchHandlers, ...mainSearchHandlers, ...typeSearchHandlers, ...subtypeSearchHandlers, ]; + +export { emptyCpocSearchHandler, errorCpocSearchHandler } from "./cpocs" From 75dfb4131985ac7a20fb5ce854a3de2357c74581 Mon Sep 17 00:00:00 2001 From: Thomas Walker Date: Thu, 19 Dec 2024 13:26:50 -0500 Subject: [PATCH 4/5] feat(test) Email snapshots for unit test (#946) * Email snapshots * Snapshot test for CMS and state. Fix naming on waiver contracting * Snapshots added * Final snapshots * Update ignored files to not include snapshot coverage * uploading snapshots * Patch date from date.now on snapshot test since the date field is currently variable * Update snapshots * Add timer to vitest.setup.ts * remove ignore snapshot commented out * Updated variable name per review --- .gitignore | 1 - .../emailTemplates/MedSpaCMS.tsx | 2 +- .../emailTemplates/TempExtCMS.tsx | 2 +- .../Initial Submissions/CMS/CHIP_SPA.tsx | 6 +- .../CMS/InitialSubmissionCMS.test.tsx | 36 + .../CMS/Waiver_Capitated.tsx | 2 +- .../InitialSubmissionCMS.test.tsx.snap | 13358 ++++++++++++++++ .../Initial Submissions/State/CHIP_SPA.tsx | 6 +- .../State/InitialSubmissionState.test.tsx | 42 + .../State/Waiver_Contracting.tsx | 4 +- .../InitialSubmissionState.test.tsx.snap | 13049 +++++++++++++++ .../email/preview/Respond to Rai/CMS/AppK.tsx | 4 +- .../preview/Respond to Rai/CMS/CHIP_SPA.tsx | 4 +- .../Respond to Rai/CMS/ResToRaiCMS.test.tsx | 29 + .../Respond to Rai/CMS/Waiver_Capitated.tsx | 4 +- .../__snapshots__/ResToRaiCMS.test.tsx.snap | 8399 ++++++++++ .../preview/Respond to Rai/State/AppK.tsx | 4 +- .../preview/Respond to Rai/State/CHIP_SPA.tsx | 4 +- .../Respond to Rai/State/Medicaid_SPA.tsx | 4 +- .../State/ResToRaiState.test.tsx | 29 + .../Respond to Rai/State/Waiver_Capitated.tsx | 4 +- .../__snapshots__/ResToRaiState.test.tsx.snap | 6221 +++++++ .../CMS/CHIP_SPA.tsx | 6 +- .../CMS/MED_SPA.tsx | 10 +- .../CMS/UpSubDocCMS.test.tsx | 29 + .../CMS/Waiver1915b.tsx | 6 +- .../__snapshots__/UpSubDocCMS.test.tsx.snap | 7851 +++++++++ .../State/AppK.tsx | 4 +- .../State/CHIP_SPA.tsx | 6 +- .../State/MED_SPA.tsx | 10 +- .../State/UpSubDocState.test.tsx | 29 + .../State/Waiver1915b.tsx | 10 +- .../__snapshots__/UpSubDocState.test.tsx.snap | 8458 ++++++++++ .../preview/Withdraw Package/CMS/AppK.tsx | 4 +- .../preview/Withdraw Package/CMS/CHIP_SPA.tsx | 6 +- .../Withdraw Package/CMS/Medicaid_SPA.tsx | 4 +- .../Withdraw Package/CMS/Waiver_Capitated.tsx | 4 +- .../CMS/WithdrawPackageCMS.test.tsx | 29 + .../WithdrawPackageCMS.test.tsx.snap | 5018 ++++++ .../preview/Withdraw Package/State/AppK.tsx | 4 +- .../Withdraw Package/State/CHIP_SPA.tsx | 6 +- .../Withdraw Package/State/Medicaid_SPA.tsx | 4 +- .../State/Waiver_Capitated.tsx | 4 +- .../State/WithdrawPackageState.test.tsx | 30 + .../WithdrawPackageState.test.tsx.snap | 5529 +++++++ .../__snapshots__/WithdrawState.test.tsx.snap | 5529 +++++++ .../email/preview/Withdraw Rai/CMS/AppK.tsx | 4 +- .../preview/Withdraw Rai/CMS/CHIP_SPA.tsx | 4 +- .../preview/Withdraw Rai/CMS/Medicaid_SPA.tsx | 4 +- .../Withdraw Rai/CMS/Waiver_Contracting.tsx | 4 +- .../Withdraw Rai/CMS/WithdrwRaiCMS.test.tsx | 29 + .../__snapshots__/WithdrwRaiCMS.test.tsx.snap | 5779 +++++++ .../email/preview/Withdraw Rai/State/AppK.tsx | 4 +- .../preview/Withdraw Rai/State/CHIP_SPA.tsx | 6 +- .../Withdraw Rai/State/Medicaid_SPA.tsx | 6 +- .../Withdraw Rai/State/Waiver_Contracting.tsx | 6 +- .../State/WithdrawRaiState.test.tsx | 29 + .../WithdrawRaiState.test.tsx.snap | 5400 +++++++ lib/libs/email/vitest.config.ts | 11 + lib/libs/email/vitest.setup.ts | 19 + lib/vitest.config.ts | 2 +- vitest.workspace.ts | 3 +- 62 files changed, 85022 insertions(+), 92 deletions(-) create mode 100644 lib/libs/email/preview/Initial Submissions/CMS/InitialSubmissionCMS.test.tsx create mode 100644 lib/libs/email/preview/Initial Submissions/CMS/__snapshots__/InitialSubmissionCMS.test.tsx.snap create mode 100644 lib/libs/email/preview/Initial Submissions/State/InitialSubmissionState.test.tsx create mode 100644 lib/libs/email/preview/Initial Submissions/State/__snapshots__/InitialSubmissionState.test.tsx.snap create mode 100644 lib/libs/email/preview/Respond to Rai/CMS/ResToRaiCMS.test.tsx create mode 100644 lib/libs/email/preview/Respond to Rai/CMS/__snapshots__/ResToRaiCMS.test.tsx.snap create mode 100644 lib/libs/email/preview/Respond to Rai/State/ResToRaiState.test.tsx create mode 100644 lib/libs/email/preview/Respond to Rai/State/__snapshots__/ResToRaiState.test.tsx.snap create mode 100644 lib/libs/email/preview/Upload Subsequent Documents/CMS/UpSubDocCMS.test.tsx create mode 100644 lib/libs/email/preview/Upload Subsequent Documents/CMS/__snapshots__/UpSubDocCMS.test.tsx.snap create mode 100644 lib/libs/email/preview/Upload Subsequent Documents/State/UpSubDocState.test.tsx create mode 100644 lib/libs/email/preview/Upload Subsequent Documents/State/__snapshots__/UpSubDocState.test.tsx.snap create mode 100644 lib/libs/email/preview/Withdraw Package/CMS/WithdrawPackageCMS.test.tsx create mode 100644 lib/libs/email/preview/Withdraw Package/CMS/__snapshots__/WithdrawPackageCMS.test.tsx.snap create mode 100644 lib/libs/email/preview/Withdraw Package/State/WithdrawPackageState.test.tsx create mode 100644 lib/libs/email/preview/Withdraw Package/State/__snapshots__/WithdrawPackageState.test.tsx.snap create mode 100644 lib/libs/email/preview/Withdraw Package/State/__snapshots__/WithdrawState.test.tsx.snap create mode 100644 lib/libs/email/preview/Withdraw Rai/CMS/WithdrwRaiCMS.test.tsx create mode 100644 lib/libs/email/preview/Withdraw Rai/CMS/__snapshots__/WithdrwRaiCMS.test.tsx.snap create mode 100644 lib/libs/email/preview/Withdraw Rai/State/WithdrawRaiState.test.tsx create mode 100644 lib/libs/email/preview/Withdraw Rai/State/__snapshots__/WithdrawRaiState.test.tsx.snap create mode 100644 lib/libs/email/vitest.config.ts create mode 100644 lib/libs/email/vitest.setup.ts diff --git a/.gitignore b/.gitignore index 2931fff8ce..af47aca24d 100644 --- a/.gitignore +++ b/.gitignore @@ -21,4 +21,3 @@ DS_Store # tests coverage -__snapshots__ diff --git a/lib/libs/email/content/new-submission/emailTemplates/MedSpaCMS.tsx b/lib/libs/email/content/new-submission/emailTemplates/MedSpaCMS.tsx index bdcbd7503f..2945166a20 100644 --- a/lib/libs/email/content/new-submission/emailTemplates/MedSpaCMS.tsx +++ b/lib/libs/email/content/new-submission/emailTemplates/MedSpaCMS.tsx @@ -7,7 +7,7 @@ import { BasicFooter, } from "../../email-components"; import { BaseEmailTemplate } from "../../email-templates"; -import { formatDate } from "lib/packages/shared-utils"; +import { formatDate } from "shared-utils"; export const MedSpaCMSEmail = (props: { variables: Events["NewMedicaidSubmission"] & CommonEmailVariables; diff --git a/lib/libs/email/content/tempExtension/emailTemplates/TempExtCMS.tsx b/lib/libs/email/content/tempExtension/emailTemplates/TempExtCMS.tsx index 967046f471..4f691a3e30 100644 --- a/lib/libs/email/content/tempExtension/emailTemplates/TempExtCMS.tsx +++ b/lib/libs/email/content/tempExtension/emailTemplates/TempExtCMS.tsx @@ -7,7 +7,7 @@ import { DetailsHeading, } from "../../email-components"; import { BaseEmailTemplate } from "../../email-templates"; -import { formatNinetyDaysDate } from "lib/packages/shared-utils"; +import { formatNinetyDaysDate } from "shared-utils"; export const TempExtCMSEmail = (props: { variables: Events["TempExtension"] & CommonEmailVariables; diff --git a/lib/libs/email/preview/Initial Submissions/CMS/CHIP_SPA.tsx b/lib/libs/email/preview/Initial Submissions/CMS/CHIP_SPA.tsx index a909ed2506..82d19a4fe4 100644 --- a/lib/libs/email/preview/Initial Submissions/CMS/CHIP_SPA.tsx +++ b/lib/libs/email/preview/Initial Submissions/CMS/CHIP_SPA.tsx @@ -1,6 +1,6 @@ -import { ChipSpaCMSEmail } from "lib/libs/email/content/new-submission/emailTemplates/ChipSpaCMS"; -import { emailTemplateValue } from "lib/libs/email/mock-data/new-submission"; -import * as attachments from "lib/libs/email/mock-data/attachments"; +import { ChipSpaCMSEmail } from "libs/email/content/new-submission/emailTemplates/ChipSpaCMS"; +import { emailTemplateValue } from "libs/email/mock-data/new-submission"; +import * as attachments from "libs/email/mock-data/attachments"; const ChipSpaCMSEmailPreview = () => { return ( diff --git a/lib/libs/email/preview/Initial Submissions/CMS/InitialSubmissionCMS.test.tsx b/lib/libs/email/preview/Initial Submissions/CMS/InitialSubmissionCMS.test.tsx new file mode 100644 index 0000000000..6b9745694c --- /dev/null +++ b/lib/libs/email/preview/Initial Submissions/CMS/InitialSubmissionCMS.test.tsx @@ -0,0 +1,36 @@ +import { describe, it, expect } from "vitest"; +import { render } from "@testing-library/react"; + +import AppKCMSEmailPreview from "./AppK"; +import ChipSpaCMSEmailPreview from "./CHIP_SPA"; +import Medicaid_SPA from "./Medicaid_SPA"; +import TempExtCMSPreview from "./Temp_Extension"; +import Waiver1915bCMSEmailPreview from "./Waiver_Capitated"; + +describe("Initial Submission CMS Email Snapshot Test", () => { + it("renders a AppkCMSEmail Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Chipspa Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Medicaid Spa Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a TempExt Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); +}); diff --git a/lib/libs/email/preview/Initial Submissions/CMS/Waiver_Capitated.tsx b/lib/libs/email/preview/Initial Submissions/CMS/Waiver_Capitated.tsx index cf6af49366..e2a078279d 100644 --- a/lib/libs/email/preview/Initial Submissions/CMS/Waiver_Capitated.tsx +++ b/lib/libs/email/preview/Initial Submissions/CMS/Waiver_Capitated.tsx @@ -1,4 +1,4 @@ -import { Waiver1915bCMSEmail } from "lib/libs/email/content/new-submission/emailTemplates/Waiver1915bCMS"; +import { Waiver1915bCMSEmail } from "libs/email/content/new-submission/emailTemplates/Waiver1915bCMS"; import { emailTemplateValue } from "../../../mock-data/new-submission"; const Waiver1915bCMSEmailPreview = () => { diff --git a/lib/libs/email/preview/Initial Submissions/CMS/__snapshots__/InitialSubmissionCMS.test.tsx.snap b/lib/libs/email/preview/Initial Submissions/CMS/__snapshots__/InitialSubmissionCMS.test.tsx.snap new file mode 100644 index 0000000000..2d039bdfe6 --- /dev/null +++ b/lib/libs/email/preview/Initial Submissions/CMS/__snapshots__/InitialSubmissionCMS.test.tsx.snap @@ -0,0 +1,13358 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Initial Submission CMS Email Snapshot Test > renders a AppkCMSEmail Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Amendment Title + : +

+
+

+ A Perfect Appendix K Amendment Title +

+
+ + + + + + + +
+

+ Waiver Amendment Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Amendment Title + : +

+
+

+ A Perfect Appendix K Amendment Title +

+
+ + + + + + + +
+

+ Waiver Amendment Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Amendment Title + : +

+
+

+ A Perfect Appendix K Amendment Title +

+
+ + + + + + + +
+

+ Waiver Amendment Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP State Plan Amendment +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ CHIP SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP State Plan Amendment +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Amendment Title + : +

+
+

+ A Perfect Appendix K Amendment Title +

+
+ + + + + + + +
+

+ Waiver Amendment Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP State Plan Amendment +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-24-2200 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a Medicaid SPA Submission: +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA ID + : +

+
+

+ CO-24-2200 +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + cms-form-179.pdf + +

+
+ + + + + + + +
+

+ Standard Funding Questions (SFQs) + : +

+
+

+ + funding-questions-sfq.docx + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + spa-page1.pdf +
+
+ + spa-page2.pdf +
+
+ + spa-summary.pdf +
+
+ + spa-changes-2024.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+
+

+ + tribal-engagement-summary.docx +
+
+ + tribal-engagement-outreach.pdf +
+
+ + tribal-engagement-meeting-notes.pdf + +

+
+ + + + + + + +
+

+ Existing State Plan Page(s) + : +

+
+

+ + page-23-update.pdf +
+
+ + page-24-update.pdf +
+
+ + page-25-update.pdf + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Medicaid SPA CO-24-2200 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a Medicaid SPA Submission: +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA ID + : +

+
+

+ CO-24-2200 +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + cms-form-179.pdf + +

+
+ + + + + + + +
+

+ Standard Funding Questions (SFQs) + : +

+
+

+ + funding-questions-sfq.docx + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + spa-page1.pdf +
+
+ + spa-page2.pdf +
+
+ + spa-summary.pdf +
+
+ + spa-changes-2024.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+
+

+ + tribal-engagement-summary.docx +
+
+ + tribal-engagement-outreach.pdf +
+
+ + tribal-engagement-meeting-notes.pdf + +

+
+ + + + + + + +
+

+ Existing State Plan Page(s) + : +

+
+

+ + page-23-update.pdf +
+
+ + page-24-update.pdf +
+
+ + page-25-update.pdf + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Amendment Title + : +

+
+

+ A Perfect Appendix K Amendment Title +

+
+ + + + + + + +
+

+ Waiver Amendment Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP State Plan Amendment +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-24-2200 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a Medicaid SPA Submission: +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA ID + : +

+
+

+ CO-24-2200 +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + cms-form-179.pdf + +

+
+ + + + + + + +
+

+ Standard Funding Questions (SFQs) + : +

+
+

+ + funding-questions-sfq.docx + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + spa-page1.pdf +
+
+ + spa-page2.pdf +
+
+ + spa-summary.pdf +
+
+ + spa-changes-2024.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+
+

+ + tribal-engagement-summary.docx +
+
+ + tribal-engagement-outreach.pdf +
+
+ + tribal-engagement-meeting-notes.pdf + +

+
+ + + + + + + +
+

+ Existing State Plan Page(s) + : +

+
+

+ + page-23-update.pdf +
+
+ + page-24-update.pdf +
+
+ + page-25-update.pdf + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Temporary Extension MD-2343.R00.TE09 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The Submission Portal received a 1915(b) Temporary Extension Submission: +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ MD +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Temporary Extension Request Number + : +

+
+

+ MD-2343.R00.TE09 +

+
+ + + + + + + +
+

+ Temporary Extension Type + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Waiver Extension Request + : +

+
+

+ + Temporary Extention Document for submission.pdf +
+
+ + Second Extention Document for submission.pdf +
+
+ + Third Extention Document for submission.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Temporary Extension MD-2343.R00.TE09 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The Submission Portal received a 1915(b) Temporary Extension Submission: +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ MD +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Temporary Extension Request Number + : +

+
+

+ MD-2343.R00.TE09 +

+
+ + + + + + + +
+

+ Temporary Extension Type + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Waiver Extension Request + : +

+
+

+ + Temporary Extention Document for submission.pdf +
+
+ + Second Extention Document for submission.pdf +
+
+ + Third Extention Document for submission.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Amendment Title + : +

+
+

+ A Perfect Appendix K Amendment Title +

+
+ + + + + + + +
+

+ Waiver Amendment Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP State Plan Amendment +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-24-2200 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a Medicaid SPA Submission: +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA ID + : +

+
+

+ CO-24-2200 +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + cms-form-179.pdf + +

+
+ + + + + + + +
+

+ Standard Funding Questions (SFQs) + : +

+
+

+ + funding-questions-sfq.docx + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + spa-page1.pdf +
+
+ + spa-page2.pdf +
+
+ + spa-summary.pdf +
+
+ + spa-changes-2024.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+
+

+ + tribal-engagement-summary.docx +
+
+ + tribal-engagement-outreach.pdf +
+
+ + tribal-engagement-meeting-notes.pdf + +

+
+ + + + + + + +
+

+ Existing State Plan Page(s) + : +

+
+

+ + page-23-update.pdf +
+
+ + page-24-update.pdf +
+
+ + page-25-update.pdf + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Temporary Extension MD-2343.R00.TE09 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The Submission Portal received a 1915(b) Temporary Extension Submission: +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ MD +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Temporary Extension Request Number + : +

+
+

+ MD-2343.R00.TE09 +

+
+ + + + + + + +
+

+ Temporary Extension Type + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Waiver Extension Request + : +

+
+

+ + Temporary Extention Document for submission.pdf +
+
+ + Second Extention Document for submission.pdf +
+
+ + Third Extention Document for submission.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ 1915(b) New Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(b) New Submission: +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ New Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

+
+

+ + capitated-waiver-application.pdf + +

+
+ + + + + + + +
+

+ 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

+
+

+ + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ 1915(b) New Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(b) New Submission: +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ New Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

+
+

+ + capitated-waiver-application.pdf + +

+
+ + + + + + + +
+

+ 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

+
+

+ + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; diff --git a/lib/libs/email/preview/Initial Submissions/State/CHIP_SPA.tsx b/lib/libs/email/preview/Initial Submissions/State/CHIP_SPA.tsx index fae038dbae..0da31143fb 100644 --- a/lib/libs/email/preview/Initial Submissions/State/CHIP_SPA.tsx +++ b/lib/libs/email/preview/Initial Submissions/State/CHIP_SPA.tsx @@ -1,6 +1,6 @@ -import { emailTemplateValue } from "lib/libs/email/mock-data/new-submission"; -import { ChipSpaStateEmail } from "lib/libs/email/content/new-submission/emailTemplates"; -import * as attachments from "lib/libs/email/mock-data/attachments"; +import { emailTemplateValue } from "libs/email/mock-data/new-submission"; +import { ChipSpaStateEmail } from "libs/email/content/new-submission/emailTemplates"; +import * as attachments from "libs/email/mock-data/attachments"; const ChipSpaStateEmailPreview = () => { return ( { + it("renders a AppKCMSEmailPreview Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Chipspa Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Medicaid Spa Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a TempExt Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); +}); +it("renders a Waiver Contracting Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); +}); diff --git a/lib/libs/email/preview/Initial Submissions/State/Waiver_Contracting.tsx b/lib/libs/email/preview/Initial Submissions/State/Waiver_Contracting.tsx index e31c141bf7..b1159d3912 100644 --- a/lib/libs/email/preview/Initial Submissions/State/Waiver_Contracting.tsx +++ b/lib/libs/email/preview/Initial Submissions/State/Waiver_Contracting.tsx @@ -1,7 +1,7 @@ import { Waiver1915bStateEmail } from "../../../content/new-submission/emailTemplates/Waiver1915bState"; import { emailTemplateValue } from "../../../mock-data/new-submission"; -const Waiver1915bStateEmailPreview = () => { +const Waiver1915bContractingStateEmailPreview = () => { return ( { ); }; -export default Waiver1915bStateEmailPreview; +export default Waiver1915bContractingStateEmailPreview; diff --git a/lib/libs/email/preview/Initial Submissions/State/__snapshots__/InitialSubmissionState.test.tsx.snap b/lib/libs/email/preview/Initial Submissions/State/__snapshots__/InitialSubmissionState.test.tsx.snap new file mode 100644 index 0000000000..53372a05aa --- /dev/null +++ b/lib/libs/email/preview/Initial Submissions/State/__snapshots__/InitialSubmissionState.test.tsx.snap @@ -0,0 +1,13049 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Initial Submission State Email Snapshot Test > renders a AppKCMSEmailPreview Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) Waiver to CMS for review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Mar 19, 2025 @ 11:59pm ET. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) Waiver to CMS for review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Mar 19, 2025 @ 11:59pm ET. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) Waiver to CMS for review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Mar 19, 2025 @ 11:59pm ET. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your CHIP State Plan Amendment to CMS: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ CHIP SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your CHIP State Plan Amendment to CMS: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) Waiver to CMS for review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Mar 19, 2025 @ 11:59pm ET. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your CHIP State Plan Amendment to CMS: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms that you submitted a Medicaid SPA to CMS for review: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA ID + : +

+
+

+ CO-24-1234 +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ This response confirms the receipt of your Medicaid State Plan Amendment + (SPA). You can expect a formal response to your submittal to be issued + within 90 days, before Mar 19, 2025 @ 11:59pm ET. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Medicaid SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms that you submitted a Medicaid SPA to CMS for review: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA ID + : +

+
+

+ CO-24-1234 +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ This response confirms the receipt of your Medicaid State Plan Amendment + (SPA). You can expect a formal response to your submittal to be issued + within 90 days, before Mar 19, 2025 @ 11:59pm ET. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission State Email Snapshot Test > renders a TempExt Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) Waiver to CMS for review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Mar 19, 2025 @ 11:59pm ET. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your CHIP State Plan Amendment to CMS: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms that you submitted a Medicaid SPA to CMS for review: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA ID + : +

+
+

+ CO-24-1234 +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ This response confirms the receipt of your Medicaid State Plan Amendment + (SPA). You can expect a formal response to your submittal to be issued + within 90 days, before Mar 19, 2025 @ 11:59pm ET. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+
+ + + + + +
+ Temporary Extension MD-2343.R00.TE09 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms you have submitted a Temporary Extension to CMS for review +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ MD +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Temporary Extension Request Number + : +

+
+

+ MD-2343.R00.TE09 +

+
+ + + + + + + +
+

+ Temporary Extension Type + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Waiver Extension Request + : +

+
+

+ + Temporary Extention Document for submission.pdf +
+
+ + Second Extention Document for submission.pdf +
+
+ + Third Extention Document for submission.pdf + +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Temporary Extension MD-2343.R00.TE09 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms you have submitted a Temporary Extension to CMS for review +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ MD +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Temporary Extension Request Number + : +

+
+

+ MD-2343.R00.TE09 +

+
+ + + + + + + +
+

+ Temporary Extension Type + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Waiver Extension Request + : +

+
+

+ + Temporary Extention Document for submission.pdf +
+
+ + Second Extention Document for submission.pdf +
+
+ + Third Extention Document for submission.pdf + +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) Waiver to CMS for review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Mar 19, 2025 @ 11:59pm ET. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your CHIP State Plan Amendment to CMS: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms that you submitted a Medicaid SPA to CMS for review: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA ID + : +

+
+

+ CO-24-1234 +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ This response confirms the receipt of your Medicaid State Plan Amendment + (SPA). You can expect a formal response to your submittal to be issued + within 90 days, before Mar 19, 2025 @ 11:59pm ET. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+
+ + + + + +
+ Temporary Extension MD-2343.R00.TE09 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms you have submitted a Temporary Extension to CMS for review +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ MD +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Temporary Extension Request Number + : +

+
+

+ MD-2343.R00.TE09 +

+
+ + + + + + + +
+

+ Temporary Extension Type + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Waiver Extension Request + : +

+
+

+ + Temporary Extention Document for submission.pdf +
+
+ + Second Extention Document for submission.pdf +
+
+ + Third Extention Document for submission.pdf + +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+
+ + + + + +
+ 1915(b) New Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(b) New to CMS for review: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ New Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

+
+

+ + capitated-waiver-application.pdf +
+
+ + capitated-waiver-application-2.pdf + +

+
+ + + + + + + +
+

+ 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

+
+

+ + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

+
+

+ This response confirms the receipt of your Waiver request. You + can expect a formal response to your submittal to be issued within + 90 days, before + Mar 19, 2025 @ 11:59pm ET + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ 1915(b) New Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(b) New to CMS for review: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ New Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

+
+

+ + capitated-waiver-application.pdf +
+
+ + capitated-waiver-application-2.pdf + +

+
+ + + + + + + +
+

+ 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

+
+

+ + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

+
+

+ This response confirms the receipt of your Waiver request. You + can expect a formal response to your submittal to be issued within + 90 days, before + Mar 19, 2025 @ 11:59pm ET + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`renders a Waiver Contracting Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) Waiver to CMS for review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ Amend +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Mar 19, 2025 @ 11:59pm ET. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your CHIP State Plan Amendment to CMS: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms that you submitted a Medicaid SPA to CMS for review: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA ID + : +

+
+

+ CO-24-1234 +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ This response confirms the receipt of your Medicaid State Plan Amendment + (SPA). You can expect a formal response to your submittal to be issued + within 90 days, before Mar 19, 2025 @ 11:59pm ET. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+
+ + + + + +
+ Temporary Extension MD-2343.R00.TE09 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms you have submitted a Temporary Extension to CMS for review +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ MD +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Temporary Extension Request Number + : +

+
+

+ MD-2343.R00.TE09 +

+
+ + + + + + + +
+

+ Temporary Extension Type + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Waiver Extension Request + : +

+
+

+ + Temporary Extention Document for submission.pdf +
+
+ + Second Extention Document for submission.pdf +
+
+ + Third Extention Document for submission.pdf + +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+
+ + + + + +
+ 1915(b) New Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(b) New to CMS for review: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ New Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

+
+

+ + capitated-waiver-application.pdf +
+
+ + capitated-waiver-application-2.pdf + +

+
+ + + + + + + +
+

+ 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

+
+

+ + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

+
+

+ This response confirms the receipt of your Waiver request. You + can expect a formal response to your submittal to be issued within + 90 days, before + Mar 19, 2025 @ 11:59pm ET + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+
+ + + + + +
+ 1915(b) New Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(b) New to CMS for review: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ New Number + : +

+
+

+ CO-9987.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(b) Comprehensive (Contracting) Waiver Application Pre-print + : +

+
+

+ + contracting-waiver-application.pdf +
+
+ + contracting-waiver-application-2.pdf + +

+
+

+ This response confirms the receipt of your Waiver request. You + can expect a formal response to your submittal to be issued within + 90 days, before + Mar 19, 2025 @ 11:59pm ET + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ 1915(b) New Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(b) New to CMS for review: +

+
+
+

+ Details: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ New Number + : +

+
+

+ CO-9987.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(b) +

+
+ + + + + + + +
+

+ Proposed Effective Date + : +

+
+

+ February 17, 2025 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(b) Comprehensive (Contracting) Waiver Application Pre-print + : +

+
+

+ + contracting-waiver-application.pdf +
+
+ + contracting-waiver-application-2.pdf + +

+
+

+ This response confirms the receipt of your Waiver request. You + can expect a formal response to your submittal to be issued within + 90 days, before + Mar 19, 2025 @ 11:59pm ET + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; diff --git a/lib/libs/email/preview/Respond to Rai/CMS/AppK.tsx b/lib/libs/email/preview/Respond to Rai/CMS/AppK.tsx index df81a450e7..11b4fb4925 100644 --- a/lib/libs/email/preview/Respond to Rai/CMS/AppK.tsx +++ b/lib/libs/email/preview/Respond to Rai/CMS/AppK.tsx @@ -1,5 +1,5 @@ -import { WaiverCMSEmail } from "lib/libs/email/content/respondToRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/respond-to-rai"; +import { WaiverCMSEmail } from "libs/email/content/respondToRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/respond-to-rai"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Respond to Rai/CMS/CHIP_SPA.tsx b/lib/libs/email/preview/Respond to Rai/CMS/CHIP_SPA.tsx index 46bb56a9b8..c56b47eea9 100644 --- a/lib/libs/email/preview/Respond to Rai/CMS/CHIP_SPA.tsx +++ b/lib/libs/email/preview/Respond to Rai/CMS/CHIP_SPA.tsx @@ -1,5 +1,5 @@ -import { ChipSpaCMSEmail } from "lib/libs/email/content/respondToRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/respond-to-rai"; +import { ChipSpaCMSEmail } from "libs/email/content/respondToRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/respond-to-rai"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Respond to Rai/CMS/ResToRaiCMS.test.tsx b/lib/libs/email/preview/Respond to Rai/CMS/ResToRaiCMS.test.tsx new file mode 100644 index 0000000000..20e13ad7f6 --- /dev/null +++ b/lib/libs/email/preview/Respond to Rai/CMS/ResToRaiCMS.test.tsx @@ -0,0 +1,29 @@ +import { describe, it, expect } from "vitest"; +import { render } from "@testing-library/react"; +import AppK from "./AppK"; +import CHIP_SPA from "./CHIP_SPA"; +import Medicaid_SPA from "./Medicaid_SPA"; +import Waiver_Capitated from "./Waiver_Capitated"; + +describe("Respond To RAI CMS Email Snapshot Test", () => { + it("renders a AppKCMSEmailPreview Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a ChipSPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Medicaid_SPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); +}); diff --git a/lib/libs/email/preview/Respond to Rai/CMS/Waiver_Capitated.tsx b/lib/libs/email/preview/Respond to Rai/CMS/Waiver_Capitated.tsx index d84e85af4b..e69d1fc17c 100644 --- a/lib/libs/email/preview/Respond to Rai/CMS/Waiver_Capitated.tsx +++ b/lib/libs/email/preview/Respond to Rai/CMS/Waiver_Capitated.tsx @@ -1,5 +1,5 @@ -import { WaiverCMSEmail } from "lib/libs/email/content/respondToRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/respond-to-rai"; +import { WaiverCMSEmail } from "libs/email/content/respondToRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/respond-to-rai"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Respond to Rai/CMS/__snapshots__/ResToRaiCMS.test.tsx.snap b/lib/libs/email/preview/Respond to Rai/CMS/__snapshots__/ResToRaiCMS.test.tsx.snap new file mode 100644 index 0000000000..0a6c213a41 --- /dev/null +++ b/lib/libs/email/preview/Respond to Rai/CMS/__snapshots__/ResToRaiCMS.test.tsx.snap @@ -0,0 +1,8399 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Respond To RAI CMS Email Snapshot Test > renders a AppKCMSEmailPreview Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Waiver RAI Response + Submission: +

+

+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Waiver RAI Response + Submission: +

+

+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Respond To RAI CMS Email Snapshot Test > renders a ChipSPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Waiver RAI Response + Submission: +

+

+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP SPA RAI Response Submission +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ CHIP SPA CO-24-1234 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP SPA RAI Response Submission +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Waiver RAI Response + Submission: +

+

+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP SPA RAI Response Submission +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-1234.R21.00 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a Medicaid SPA RAI Response Submission: +

+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Medicaid SPA CO-1234.R21.00 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a Medicaid SPA RAI Response Submission: +

+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Waiver RAI Response + Submission: +

+

+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP SPA RAI Response Submission +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-1234.R21.00 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a Medicaid SPA RAI Response Submission: +

+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Waiver RAI Response + Submission: +

+

+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a 1915(c) Waiver RAI Response + Submission: +

+

+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; diff --git a/lib/libs/email/preview/Respond to Rai/State/AppK.tsx b/lib/libs/email/preview/Respond to Rai/State/AppK.tsx index 0b6ba9ad40..42abbdc390 100644 --- a/lib/libs/email/preview/Respond to Rai/State/AppK.tsx +++ b/lib/libs/email/preview/Respond to Rai/State/AppK.tsx @@ -1,5 +1,5 @@ -import { WaiverStateEmail } from "lib/libs/email/content/respondToRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/respond-to-rai"; +import { WaiverStateEmail } from "libs/email/content/respondToRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/respond-to-rai"; import * as attachments from "../../../mock-data/attachments"; const AppKStateEmailPreview = () => { diff --git a/lib/libs/email/preview/Respond to Rai/State/CHIP_SPA.tsx b/lib/libs/email/preview/Respond to Rai/State/CHIP_SPA.tsx index 6463b9781d..68fc247239 100644 --- a/lib/libs/email/preview/Respond to Rai/State/CHIP_SPA.tsx +++ b/lib/libs/email/preview/Respond to Rai/State/CHIP_SPA.tsx @@ -1,5 +1,5 @@ -import { ChipSpaStateEmail } from "lib/libs/email/content/respondToRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/respond-to-rai"; +import { ChipSpaStateEmail } from "libs/email/content/respondToRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/respond-to-rai"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Respond to Rai/State/Medicaid_SPA.tsx b/lib/libs/email/preview/Respond to Rai/State/Medicaid_SPA.tsx index b301697b09..ee98c7be2a 100644 --- a/lib/libs/email/preview/Respond to Rai/State/Medicaid_SPA.tsx +++ b/lib/libs/email/preview/Respond to Rai/State/Medicaid_SPA.tsx @@ -1,5 +1,5 @@ -import { MedSpaStateEmail } from "lib/libs/email/content/respondToRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/respond-to-rai"; +import { MedSpaStateEmail } from "libs/email/content/respondToRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/respond-to-rai"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Respond to Rai/State/ResToRaiState.test.tsx b/lib/libs/email/preview/Respond to Rai/State/ResToRaiState.test.tsx new file mode 100644 index 0000000000..953b44c63b --- /dev/null +++ b/lib/libs/email/preview/Respond to Rai/State/ResToRaiState.test.tsx @@ -0,0 +1,29 @@ +import { describe, it, expect } from "vitest"; +import { render } from "@testing-library/react"; +import AppKStateEmailPreview from "./AppK"; +import CHIP_SPA from "./CHIP_SPA"; +import Medicaid_SPA from "./Medicaid_SPA"; +import Waiver_Capitated from "./Waiver_Capitated"; + +describe("Respond To Rai State Email Snapshot Test", () => { + it("renders a AppKStateEmailPreview Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a ChipSPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Medicaid_SPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); +}); diff --git a/lib/libs/email/preview/Respond to Rai/State/Waiver_Capitated.tsx b/lib/libs/email/preview/Respond to Rai/State/Waiver_Capitated.tsx index dee55efa16..e50ba37acd 100644 --- a/lib/libs/email/preview/Respond to Rai/State/Waiver_Capitated.tsx +++ b/lib/libs/email/preview/Respond to Rai/State/Waiver_Capitated.tsx @@ -1,5 +1,5 @@ -import { WaiverStateEmail } from "lib/libs/email/content/respondToRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/respond-to-rai"; +import { WaiverStateEmail } from "libs/email/content/respondToRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/respond-to-rai"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Respond to Rai/State/__snapshots__/ResToRaiState.test.tsx.snap b/lib/libs/email/preview/Respond to Rai/State/__snapshots__/ResToRaiState.test.tsx.snap new file mode 100644 index 0000000000..26a24a033a --- /dev/null +++ b/lib/libs/email/preview/Respond to Rai/State/__snapshots__/ResToRaiState.test.tsx.snap @@ -0,0 +1,6221 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Respond To Rai State Email Snapshot Test > renders a AppKStateEmailPreview Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) RAI Response to CMS for review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(c) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your response to a Waiver + Request for Additional Information (RAI). You can expect a formal response to your submittal + to be issued within 90 days, before Mar 19, 2025 @ 11:59pm ET + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) RAI Response to CMS for review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(c) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your response to a Waiver + Request for Additional Information (RAI). You can expect a formal response to your submittal + to be issued within 90 days, before Mar 19, 2025 @ 11:59pm ET + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Respond To Rai State Email Snapshot Test > renders a ChipSPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) RAI Response to CMS for review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(c) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your response to a Waiver + Request for Additional Information (RAI). You can expect a formal response to your submittal + to be issued within 90 days, before Mar 19, 2025 @ 11:59pm ET + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP SPA RAI Response Submission +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+

+ This response confirms receipt of your CHIP State Plan Amendment (SPA) or your response to a + SPA Request for Additional Information (RAI). You can expect a formal response to your + submittal to be issued within 90 days, before Mar 19, 2025 @ 11:59pm ET + . +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ CHIP SPA CO-24-1234 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP SPA RAI Response Submission +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+

+ This response confirms receipt of your CHIP State Plan Amendment (SPA) or your response to a + SPA Request for Additional Information (RAI). You can expect a formal response to your + submittal to be issued within 90 days, before Mar 19, 2025 @ 11:59pm ET + . +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) RAI Response to CMS for review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(c) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your response to a Waiver + Request for Additional Information (RAI). You can expect a formal response to your submittal + to be issued within 90 days, before Mar 19, 2025 @ 11:59pm ET + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP SPA RAI Response Submission +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+

+ This response confirms receipt of your CHIP State Plan Amendment (SPA) or your response to a + SPA Request for Additional Information (RAI). You can expect a formal response to your + submittal to be issued within 90 days, before Mar 19, 2025 @ 11:59pm ET + . +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-24-2200 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms you submitted a Medicaid SPA RAI Response to CMS for review +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA ID + : +

+
+

+ CO-24-2200 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+

+ This response confirms receipt of your response to a SPA Request for Additional Information + (RAI). You can expect a formal response to your submittal to be issued within 90 days, + before Mar 19, 2025 @ 11:59pm ET. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Medicaid SPA CO-24-2200 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms you submitted a Medicaid SPA RAI Response to CMS for review +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA ID + : +

+
+

+ CO-24-2200 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+

+ This response confirms receipt of your response to a SPA Request for Additional Information + (RAI). You can expect a formal response to your submittal to be issued within 90 days, + before Mar 19, 2025 @ 11:59pm ET. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) RAI Response to CMS for review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(c) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your response to a Waiver + Request for Additional Information (RAI). You can expect a formal response to your submittal + to be issued within 90 days, before Mar 19, 2025 @ 11:59pm ET + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA CO-24-1234 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a CHIP SPA RAI Response Submission +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+

+ This response confirms receipt of your CHIP State Plan Amendment (SPA) or your response to a + SPA Request for Additional Information (RAI). You can expect a formal response to your + submittal to be issued within 90 days, before Mar 19, 2025 @ 11:59pm ET + . +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-24-2200 RAI Response Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms you submitted a Medicaid SPA RAI Response to CMS for review +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA ID + : +

+
+

+ CO-24-2200 +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+

+ This response confirms receipt of your response to a SPA Request for Additional Information + (RAI). You can expect a formal response to your submittal to be issued within 90 days, + before Mar 19, 2025 @ 11:59pm ET. +

+

+ This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) RAI Response to CMS for review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(c) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your response to a Waiver + Request for Additional Information (RAI). You can expect a formal response to your submittal + to be issued within 90 days, before Mar 19, 2025 @ 11:59pm ET + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Appendix K Amendment Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms the submission of your 1915(c) RAI Response to CMS for review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Initial Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + + + + + +
+

+ Waiver Authority + : +

+
+

+ 1915(c) +

+
+ + + + + + + +
+

+ 90th Day Deadline + : +

+
+

+ Mar 19, 2025 @ 11:59pm ET +

+
+ + + +
+

+

+ Summary: +

+

+

+ Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses +

+ + +
+
+
+

+ This response confirms the receipt of your Waiver request or your response to a Waiver + Request for Additional Information (RAI). You can expect a formal response to your submittal + to be issued within 90 days, before Mar 19, 2025 @ 11:59pm ET + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; diff --git a/lib/libs/email/preview/Upload Subsequent Documents/CMS/CHIP_SPA.tsx b/lib/libs/email/preview/Upload Subsequent Documents/CMS/CHIP_SPA.tsx index ceec9f1c25..94c86da233 100644 --- a/lib/libs/email/preview/Upload Subsequent Documents/CMS/CHIP_SPA.tsx +++ b/lib/libs/email/preview/Upload Subsequent Documents/CMS/CHIP_SPA.tsx @@ -1,6 +1,6 @@ -import { ChipSpaCMSEmail } from "lib/libs/email/content/upload-subsequent-documents/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/upload-subsequent-documents"; -import * as attachments from "lib/libs/email/mock-data/attachments"; +import { ChipSpaCMSEmail } from "libs/email/content/upload-subsequent-documents/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/upload-subsequent-documents"; +import * as attachments from "libs/email/mock-data/attachments"; const ChipSpaCMSEmailPreview = () => { return ( diff --git a/lib/libs/email/preview/Upload Subsequent Documents/CMS/MED_SPA.tsx b/lib/libs/email/preview/Upload Subsequent Documents/CMS/MED_SPA.tsx index 7b41cf0a4d..74b4f57c42 100644 --- a/lib/libs/email/preview/Upload Subsequent Documents/CMS/MED_SPA.tsx +++ b/lib/libs/email/preview/Upload Subsequent Documents/CMS/MED_SPA.tsx @@ -1,8 +1,8 @@ -import { MedSpaCMSEmail } from "lib/libs/email/content/upload-subsequent-documents/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/upload-subsequent-documents"; -import * as attachments from "lib/libs/email/mock-data/attachments"; +import { MedSpaCMSEmail } from "libs/email/content/upload-subsequent-documents/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/upload-subsequent-documents"; +import * as attachments from "libs/email/mock-data/attachments"; -const ChipSpaCMSEmailPreview = () => { +const MedicaidSpaCMSEmailPreview = () => { return ( { ); }; -export default ChipSpaCMSEmailPreview; +export default MedicaidSpaCMSEmailPreview; diff --git a/lib/libs/email/preview/Upload Subsequent Documents/CMS/UpSubDocCMS.test.tsx b/lib/libs/email/preview/Upload Subsequent Documents/CMS/UpSubDocCMS.test.tsx new file mode 100644 index 0000000000..54053fbafa --- /dev/null +++ b/lib/libs/email/preview/Upload Subsequent Documents/CMS/UpSubDocCMS.test.tsx @@ -0,0 +1,29 @@ +import { describe, it, expect } from "vitest"; +import { render } from "@testing-library/react"; +import AppKCMSEmailPreview from "./AppK"; +import ChipSpaCMSEmailPreview from "./CHIP_SPA"; +import MedicaidSpaCMSEmailPreview from "./MED_SPA"; +import Waiver1915bCMSEmail from "./Waiver1915b"; + +describe("Upload Subsequent Document CMS Email Snapshot Test", () => { + it("renders a AppKCMSEmailPreview Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a ChipSPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Medicaid_SPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); +}); diff --git a/lib/libs/email/preview/Upload Subsequent Documents/CMS/Waiver1915b.tsx b/lib/libs/email/preview/Upload Subsequent Documents/CMS/Waiver1915b.tsx index 586e0093d5..5e72eaf2ed 100644 --- a/lib/libs/email/preview/Upload Subsequent Documents/CMS/Waiver1915b.tsx +++ b/lib/libs/email/preview/Upload Subsequent Documents/CMS/Waiver1915b.tsx @@ -1,6 +1,6 @@ -import { WaiversEmailCMS } from "lib/libs/email/content/upload-subsequent-documents/emailTemplates/Waiver1915BCMS"; -import { emailTemplateValue } from "lib/libs/email/mock-data/upload-subsequent-documents"; -import * as attachments from "lib/libs/email/mock-data/attachments"; +import { WaiversEmailCMS } from "libs/email/content/upload-subsequent-documents/emailTemplates/Waiver1915BCMS"; +import { emailTemplateValue } from "libs/email/mock-data/upload-subsequent-documents"; +import * as attachments from "libs/email/mock-data/attachments"; const Waiver1915bCMSEmail = () => { return ( diff --git a/lib/libs/email/preview/Upload Subsequent Documents/CMS/__snapshots__/UpSubDocCMS.test.tsx.snap b/lib/libs/email/preview/Upload Subsequent Documents/CMS/__snapshots__/UpSubDocCMS.test.tsx.snap new file mode 100644 index 0000000000..9be36503b2 --- /dev/null +++ b/lib/libs/email/preview/Upload Subsequent Documents/CMS/__snapshots__/UpSubDocCMS.test.tsx.snap @@ -0,0 +1,7851 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a AppKCMSEmailPreview Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Action required: review new documents for 1915(c) CO-1234.R21.00 in OneMAC. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for 1915(c) CO-1234.R21.00 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ 1915(c) Appendix K ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Action required: review new documents for 1915(c) CO-1234.R21.00 in OneMAC. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for 1915(c) CO-1234.R21.00 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ 1915(c) Appendix K ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Action required: review new documents for 1915(c) CO-1234.R21.00 in OneMAC. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for 1915(c) CO-1234.R21.00 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ 1915(c) Appendix K ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Action required: review new documents for CHIP SPA CO-24-1234 in OneMAC. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for CHIP SPA CO-24-1234 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Action required: review new documents for CHIP SPA CO-24-1234 in OneMAC. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for CHIP SPA CO-24-1234 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid_SPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Action required: review new documents for 1915(c) CO-1234.R21.00 in OneMAC. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for 1915(c) CO-1234.R21.00 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ 1915(c) Appendix K ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Action required: review new documents for CHIP SPA CO-24-1234 in OneMAC. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for CHIP SPA CO-24-1234 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-24-1234 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for Medicaid SPA CO-24-1234 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Medicaid SPA CO-24-1234 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for Medicaid SPA CO-24-1234 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Action required: review new documents for 1915(c) CO-1234.R21.00 in OneMAC. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for 1915(c) CO-1234.R21.00 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ 1915(c) Appendix K ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Action required: review new documents for CHIP SPA CO-24-1234 in OneMAC. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for CHIP SPA CO-24-1234 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Medicaid SPA CO-24-1234 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for Medicaid SPA CO-24-1234 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Action required: review new documents for 1915(B) CO-24-1234 in OneMAC. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for 1915(B) CO-24-1234 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Waiver Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Action required: review new documents for 1915(B) CO-24-1234 in OneMAC. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ New documents have been submitted for 1915(B) CO-24-1234 in OneMAC. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Waiver Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ How to Access: +

+
    +
  • +

    + These documents can be found in OneMAC through this link + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, click “Login” at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you logged in, click the submission ID number on the dashboard page to view details. +

    +
  • +
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; diff --git a/lib/libs/email/preview/Upload Subsequent Documents/State/AppK.tsx b/lib/libs/email/preview/Upload Subsequent Documents/State/AppK.tsx index 18d62c7d83..62b6e62897 100644 --- a/lib/libs/email/preview/Upload Subsequent Documents/State/AppK.tsx +++ b/lib/libs/email/preview/Upload Subsequent Documents/State/AppK.tsx @@ -1,7 +1,7 @@ import { AppKStateEmail } from "../../../content/upload-subsequent-documents/emailTemplates"; import { emailTemplateValue } from "../../../mock-data/new-submission"; import * as attachments from "../../../mock-data/attachments"; -const AppKCMSEmailPreview = () => { +const AppKStateEmailPreview = () => { return ( { ); }; -export default AppKCMSEmailPreview; +export default AppKStateEmailPreview; diff --git a/lib/libs/email/preview/Upload Subsequent Documents/State/CHIP_SPA.tsx b/lib/libs/email/preview/Upload Subsequent Documents/State/CHIP_SPA.tsx index 053adeb217..9d89013150 100644 --- a/lib/libs/email/preview/Upload Subsequent Documents/State/CHIP_SPA.tsx +++ b/lib/libs/email/preview/Upload Subsequent Documents/State/CHIP_SPA.tsx @@ -1,6 +1,6 @@ -import { emailTemplateValue } from "lib/libs/email/mock-data/upload-subsequent-documents"; -import { ChipSpaStateEmail } from "lib/libs/email/content/upload-subsequent-documents/emailTemplates"; -import * as attachments from "lib/libs/email/mock-data/attachments"; +import { emailTemplateValue } from "libs/email/mock-data/upload-subsequent-documents"; +import { ChipSpaStateEmail } from "libs/email/content/upload-subsequent-documents/emailTemplates"; +import * as attachments from "libs/email/mock-data/attachments"; const ChipSpaStateEmailPreview = () => { return ( { +import { emailTemplateValue } from "libs/email/mock-data/upload-subsequent-documents"; +import { MedSpaStateEmail } from "libs/email/content/upload-subsequent-documents/emailTemplates"; +import * as attachments from "libs/email/mock-data/attachments"; +const MedicaidSpaStateEmailPreview = () => { return ( { ); }; -export default ChipSpaStateEmailPreview; +export default MedicaidSpaStateEmailPreview; diff --git a/lib/libs/email/preview/Upload Subsequent Documents/State/UpSubDocState.test.tsx b/lib/libs/email/preview/Upload Subsequent Documents/State/UpSubDocState.test.tsx new file mode 100644 index 0000000000..32d2e507ba --- /dev/null +++ b/lib/libs/email/preview/Upload Subsequent Documents/State/UpSubDocState.test.tsx @@ -0,0 +1,29 @@ +import { describe, it, expect } from "vitest"; +import { render } from "@testing-library/react"; +import AppKStateEmailPreview from "./AppK"; +import ChipSpaStateEmailPreview from "./CHIP_SPA"; +import MedicaidSpaStateEmailPreview from "./MED_SPA"; +import Waiver1915bStateEmail from "./Waiver1915b"; + +describe("Upload Subsequent Document CMS Email Snapshot Test", () => { + it("renders a AppKCMSEmailPreview Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a ChipSPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Medicaid_SPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); +}); diff --git a/lib/libs/email/preview/Upload Subsequent Documents/State/Waiver1915b.tsx b/lib/libs/email/preview/Upload Subsequent Documents/State/Waiver1915b.tsx index 675eb3e258..9ce41a53ac 100644 --- a/lib/libs/email/preview/Upload Subsequent Documents/State/Waiver1915b.tsx +++ b/lib/libs/email/preview/Upload Subsequent Documents/State/Waiver1915b.tsx @@ -1,8 +1,8 @@ -import { WaiversEmailState } from "lib/libs/email/content/upload-subsequent-documents/emailTemplates/Waiver1915BState"; -import { emailTemplateValue } from "lib/libs/email/mock-data/upload-subsequent-documents"; -import * as attachments from "lib/libs/email/mock-data/attachments"; +import { WaiversEmailState } from "libs/email/content/upload-subsequent-documents/emailTemplates/Waiver1915BState"; +import { emailTemplateValue } from "libs/email/mock-data/upload-subsequent-documents"; +import * as attachments from "libs/email/mock-data/attachments"; -const Waiver1915bCMSEmail = () => { +const Waiver1915bStateEmail = () => { return ( { ); }; -export default Waiver1915bCMSEmail; +export default Waiver1915bStateEmail; diff --git a/lib/libs/email/preview/Upload Subsequent Documents/State/__snapshots__/UpSubDocState.test.tsx.snap b/lib/libs/email/preview/Upload Subsequent Documents/State/__snapshots__/UpSubDocState.test.tsx.snap new file mode 100644 index 0000000000..1cda1b5776 --- /dev/null +++ b/lib/libs/email/preview/Upload Subsequent Documents/State/__snapshots__/UpSubDocState.test.tsx.snap @@ -0,0 +1,8458 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a AppKCMSEmailPreview Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Additional documents submitted for 1915(c) CO-1234.R21.00 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for 1915(c) CO-1234.R21.00 +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ 1915(c) Appendix K ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Additional documents submitted for 1915(c) CO-1234.R21.00 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for 1915(c) CO-1234.R21.00 +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ 1915(c) Appendix K ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Additional documents submitted for 1915(c) CO-1234.R21.00 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for 1915(c) CO-1234.R21.00 +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ 1915(c) Appendix K ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Additional documents submitted for CHIP SPA CO-24-1234 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for CHIP SPA CO-24-1234 +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Additional documents submitted for CHIP SPA CO-24-1234 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for CHIP SPA CO-24-1234 +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid_SPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Additional documents submitted for 1915(c) CO-1234.R21.00 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for 1915(c) CO-1234.R21.00 +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ 1915(c) Appendix K ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Additional documents submitted for CHIP SPA CO-24-1234 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for CHIP SPA CO-24-1234 +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Additional documents submitted for Medicaid SPA CO-24-1234 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for Medicaid SPA CO-24-1234 +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Additional documents submitted for Medicaid SPA CO-24-1234 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for Medicaid SPA CO-24-1234 +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Additional documents submitted for 1915(c) CO-1234.R21.00 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for 1915(c) CO-1234.R21.00 +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ 1915(c) Appendix K ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ 1915(c) Appendix K Amendment Waiver Template + : +

+
+

+ + appendix-k-amendment.docx + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Additional documents submitted for CHIP SPA CO-24-1234 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for CHIP SPA CO-24-1234 +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Additional documents submitted for Medicaid SPA CO-24-1234 +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for Medicaid SPA CO-24-1234 +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Action required: review new documents for 1915(B) CO-24-1234. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for 1915(B) CO-24-1234: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Action required: review new documents for 1915(B) CO-24-1234. +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ You’ve successfully submitted the following to CMS reviewers for 1915(B) CO-24-1234: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to upload additional documents. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ CMS Form 179 + : +

+
+

+ + state-plan-2024.pdf +
+
+ + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+
+ + + + + + + +
+

+ SPA Pages + : +

+
+

+ + amended-language-1.pdf +
+
+ + amended-language-2.pdf + +

+
+ + + + + + + +
+

+ Cover Letter + : +

+
+

+ + cover-letter-george-harrison.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+
+

+ If you have questions or did not expect this email, please contact your CPOC. +

+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; diff --git a/lib/libs/email/preview/Withdraw Package/CMS/AppK.tsx b/lib/libs/email/preview/Withdraw Package/CMS/AppK.tsx index acff1b1cbe..ede7320a5f 100644 --- a/lib/libs/email/preview/Withdraw Package/CMS/AppK.tsx +++ b/lib/libs/email/preview/Withdraw Package/CMS/AppK.tsx @@ -1,5 +1,5 @@ -import { WaiverCMSEmail } from "lib/libs/email/content/withdrawPackage/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/new-submission"; +import { WaiverCMSEmail } from "libs/email/content/withdrawPackage/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/new-submission"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Withdraw Package/CMS/CHIP_SPA.tsx b/lib/libs/email/preview/Withdraw Package/CMS/CHIP_SPA.tsx index f24fbcdd66..66f2e951d4 100644 --- a/lib/libs/email/preview/Withdraw Package/CMS/CHIP_SPA.tsx +++ b/lib/libs/email/preview/Withdraw Package/CMS/CHIP_SPA.tsx @@ -1,6 +1,6 @@ -import { ChipSpaCMSEmail } from "lib/libs/email/content/withdrawPackage/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/new-submission"; -import * as attachments from "lib/libs/email/mock-data/attachments"; +import { ChipSpaCMSEmail } from "libs/email/content/withdrawPackage/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/new-submission"; +import * as attachments from "libs/email/mock-data/attachments"; export default () => { return ( diff --git a/lib/libs/email/preview/Withdraw Package/CMS/Medicaid_SPA.tsx b/lib/libs/email/preview/Withdraw Package/CMS/Medicaid_SPA.tsx index 0a2986bfdf..f763564968 100644 --- a/lib/libs/email/preview/Withdraw Package/CMS/Medicaid_SPA.tsx +++ b/lib/libs/email/preview/Withdraw Package/CMS/Medicaid_SPA.tsx @@ -1,5 +1,5 @@ -import { MedSpaCMSEmail } from "lib/libs/email/content/withdrawPackage/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/new-submission"; +import { MedSpaCMSEmail } from "libs/email/content/withdrawPackage/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/new-submission"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Withdraw Package/CMS/Waiver_Capitated.tsx b/lib/libs/email/preview/Withdraw Package/CMS/Waiver_Capitated.tsx index 5b29b61081..052cd6e845 100644 --- a/lib/libs/email/preview/Withdraw Package/CMS/Waiver_Capitated.tsx +++ b/lib/libs/email/preview/Withdraw Package/CMS/Waiver_Capitated.tsx @@ -1,5 +1,5 @@ -import { WaiverCMSEmail } from "lib/libs/email/content/withdrawPackage/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/new-submission"; +import { WaiverCMSEmail } from "libs/email/content/withdrawPackage/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/new-submission"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Withdraw Package/CMS/WithdrawPackageCMS.test.tsx b/lib/libs/email/preview/Withdraw Package/CMS/WithdrawPackageCMS.test.tsx new file mode 100644 index 0000000000..613031dc6e --- /dev/null +++ b/lib/libs/email/preview/Withdraw Package/CMS/WithdrawPackageCMS.test.tsx @@ -0,0 +1,29 @@ +import { describe, it, expect } from "vitest"; +import { render } from "@testing-library/react"; +import Appk from "./AppK"; +import CHIP_SPA from "./CHIP_SPA"; +import Medicaid_SPA from "./Medicaid_SPA"; +import Waiver_Capitated from "./Waiver_Capitated"; + +describe("Withdraw Package CMS Email Snapshot Test", () => { + it("renders a Appk Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a ChipSPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Medicaid_SPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); +}); diff --git a/lib/libs/email/preview/Withdraw Package/CMS/__snapshots__/WithdrawPackageCMS.test.tsx.snap b/lib/libs/email/preview/Withdraw Package/CMS/__snapshots__/WithdrawPackageCMS.test.tsx.snap new file mode 100644 index 0000000000..acfd6cacf8 --- /dev/null +++ b/lib/libs/email/preview/Withdraw Package/CMS/__snapshots__/WithdrawPackageCMS.test.tsx.snap @@ -0,0 +1,5018 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Withdraw Package CMS Email Snapshot Test > renders a Appk Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw Package CMS Email Snapshot Test > renders a ChipSPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ CHIP SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw Package CMS Email Snapshot Test > renders a Medicaid_SPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ SPA SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ SPA SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw Package CMS Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ SPA SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; diff --git a/lib/libs/email/preview/Withdraw Package/State/AppK.tsx b/lib/libs/email/preview/Withdraw Package/State/AppK.tsx index dd42dccc48..402b556929 100644 --- a/lib/libs/email/preview/Withdraw Package/State/AppK.tsx +++ b/lib/libs/email/preview/Withdraw Package/State/AppK.tsx @@ -1,5 +1,5 @@ -import { WaiverStateEmail } from "lib/libs/email/content/withdrawPackage/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/new-submission"; +import { WaiverStateEmail } from "libs/email/content/withdrawPackage/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/new-submission"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Withdraw Package/State/CHIP_SPA.tsx b/lib/libs/email/preview/Withdraw Package/State/CHIP_SPA.tsx index 610a49437b..cdd900a6d7 100644 --- a/lib/libs/email/preview/Withdraw Package/State/CHIP_SPA.tsx +++ b/lib/libs/email/preview/Withdraw Package/State/CHIP_SPA.tsx @@ -1,6 +1,6 @@ -import { ChipSpaStateEmail } from "lib/libs/email/content/withdrawPackage/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/new-submission"; -import * as attachments from "lib/libs/email/mock-data/attachments"; +import { ChipSpaStateEmail } from "libs/email/content/withdrawPackage/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/new-submission"; +import * as attachments from "libs/email/mock-data/attachments"; export default () => { return ( diff --git a/lib/libs/email/preview/Withdraw Package/State/Medicaid_SPA.tsx b/lib/libs/email/preview/Withdraw Package/State/Medicaid_SPA.tsx index b0dae1ba0b..e88b6e793b 100644 --- a/lib/libs/email/preview/Withdraw Package/State/Medicaid_SPA.tsx +++ b/lib/libs/email/preview/Withdraw Package/State/Medicaid_SPA.tsx @@ -1,5 +1,5 @@ -import { MedSpaStateEmail } from "lib/libs/email/content/withdrawPackage/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/new-submission"; +import { MedSpaStateEmail } from "libs/email/content/withdrawPackage/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/new-submission"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Withdraw Package/State/Waiver_Capitated.tsx b/lib/libs/email/preview/Withdraw Package/State/Waiver_Capitated.tsx index fce69bda02..d8528b85fe 100644 --- a/lib/libs/email/preview/Withdraw Package/State/Waiver_Capitated.tsx +++ b/lib/libs/email/preview/Withdraw Package/State/Waiver_Capitated.tsx @@ -1,5 +1,5 @@ -import { WaiverStateEmail } from "lib/libs/email/content/withdrawPackage/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/new-submission"; +import { WaiverStateEmail } from "libs/email/content/withdrawPackage/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/new-submission"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Withdraw Package/State/WithdrawPackageState.test.tsx b/lib/libs/email/preview/Withdraw Package/State/WithdrawPackageState.test.tsx new file mode 100644 index 0000000000..da525af2af --- /dev/null +++ b/lib/libs/email/preview/Withdraw Package/State/WithdrawPackageState.test.tsx @@ -0,0 +1,30 @@ +import { describe, it, expect } from "vitest"; +import { render } from "@testing-library/react"; + +import Appk from "./AppK"; +import CHIP_SPA from "./CHIP_SPA"; +import Medicaid_SPA from "./Medicaid_SPA"; +import Waiver_Capitated from "./Waiver_Capitated"; + +describe("Withdraw Package State Email Snapshot Test", () => { + it("renders a Appk Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a ChipSPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Medicaid_SPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); +}); diff --git a/lib/libs/email/preview/Withdraw Package/State/__snapshots__/WithdrawPackageState.test.tsx.snap b/lib/libs/email/preview/Withdraw Package/State/__snapshots__/WithdrawPackageState.test.tsx.snap new file mode 100644 index 0000000000..bde724b6a5 --- /dev/null +++ b/lib/libs/email/preview/Withdraw Package/State/__snapshots__/WithdrawPackageState.test.tsx.snap @@ -0,0 +1,5529 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Withdraw Package State Email Snapshot Test > renders a Appk Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw Package State Email Snapshot Test > renders a ChipSPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ CHIP SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw Package State Email Snapshot Test > renders a Medicaid_SPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + . +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + . +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw Package State Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + . +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; diff --git a/lib/libs/email/preview/Withdraw Package/State/__snapshots__/WithdrawState.test.tsx.snap b/lib/libs/email/preview/Withdraw Package/State/__snapshots__/WithdrawState.test.tsx.snap new file mode 100644 index 0000000000..961a6db3f4 --- /dev/null +++ b/lib/libs/email/preview/Withdraw Package/State/__snapshots__/WithdrawState.test.tsx.snap @@ -0,0 +1,5529 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Withdraw Package State Email Snapshot Test > renders a Appk Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw Package State Email Snapshot Test > renders a ChipSPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ CHIP SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw Package State Email Snapshot Test > renders a Medicaid_SPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + . +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + . +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw Package State Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ CHIP SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ SPA Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + . +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Waiver Package CO-1234.R21.00 Withdraw Request +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This is confirmation that you have requested to withdraw the package below. The package will no longer be considered for CMS review: +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George Harrison +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ george@example.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2024 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; diff --git a/lib/libs/email/preview/Withdraw Rai/CMS/AppK.tsx b/lib/libs/email/preview/Withdraw Rai/CMS/AppK.tsx index 446bc18648..d16f178e22 100644 --- a/lib/libs/email/preview/Withdraw Rai/CMS/AppK.tsx +++ b/lib/libs/email/preview/Withdraw Rai/CMS/AppK.tsx @@ -1,5 +1,5 @@ -import { AppKCMSEmail } from "lib/libs/email/content/withdrawRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/withdraw-rai"; +import { AppKCMSEmail } from "libs/email/content/withdrawRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/withdraw-rai"; import * as attachments from "../../../mock-data/attachments"; export const relatedEvent = { diff --git a/lib/libs/email/preview/Withdraw Rai/CMS/CHIP_SPA.tsx b/lib/libs/email/preview/Withdraw Rai/CMS/CHIP_SPA.tsx index 28d294f177..02e91163ba 100644 --- a/lib/libs/email/preview/Withdraw Rai/CMS/CHIP_SPA.tsx +++ b/lib/libs/email/preview/Withdraw Rai/CMS/CHIP_SPA.tsx @@ -1,5 +1,5 @@ -import { ChipSpaCMSEmail } from "lib/libs/email/content/withdrawRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/withdraw-rai"; +import { ChipSpaCMSEmail } from "libs/email/content/withdrawRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/withdraw-rai"; import { relatedEvent } from "./AppK"; import * as attachments from "../../../mock-data/attachments"; diff --git a/lib/libs/email/preview/Withdraw Rai/CMS/Medicaid_SPA.tsx b/lib/libs/email/preview/Withdraw Rai/CMS/Medicaid_SPA.tsx index 0b718608ed..d4211183e9 100644 --- a/lib/libs/email/preview/Withdraw Rai/CMS/Medicaid_SPA.tsx +++ b/lib/libs/email/preview/Withdraw Rai/CMS/Medicaid_SPA.tsx @@ -1,5 +1,5 @@ -import { MedSpaCMSEmail } from "lib/libs/email/content/withdrawRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/withdraw-rai"; +import { MedSpaCMSEmail } from "libs/email/content/withdrawRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/withdraw-rai"; import { relatedEvent } from "./AppK"; import * as attachments from "../../../mock-data/attachments"; diff --git a/lib/libs/email/preview/Withdraw Rai/CMS/Waiver_Contracting.tsx b/lib/libs/email/preview/Withdraw Rai/CMS/Waiver_Contracting.tsx index 0fad0134ac..7194a7c24f 100644 --- a/lib/libs/email/preview/Withdraw Rai/CMS/Waiver_Contracting.tsx +++ b/lib/libs/email/preview/Withdraw Rai/CMS/Waiver_Contracting.tsx @@ -1,5 +1,5 @@ -import { Waiver1915bCMSEmail } from "lib/libs/email/content/withdrawRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/withdraw-rai"; +import { Waiver1915bCMSEmail } from "libs/email/content/withdrawRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/withdraw-rai"; import { relatedEvent } from "./AppK"; import * as attachments from "../../../mock-data/attachments"; diff --git a/lib/libs/email/preview/Withdraw Rai/CMS/WithdrwRaiCMS.test.tsx b/lib/libs/email/preview/Withdraw Rai/CMS/WithdrwRaiCMS.test.tsx new file mode 100644 index 0000000000..4851005c7b --- /dev/null +++ b/lib/libs/email/preview/Withdraw Rai/CMS/WithdrwRaiCMS.test.tsx @@ -0,0 +1,29 @@ +import { describe, it, expect } from "vitest"; +import { render } from "@testing-library/react"; +import Appk from "./AppK"; +import CHIP_SPA from "./CHIP_SPA"; +import Medicaid_SPA from "./Medicaid_SPA"; +import Waiver_Contracting from "./Waiver_Contracting"; + +describe("Withdraw RAI CMS Email Snapshot Test", () => { + it("renders a Appk Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a ChipSPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Medicaid_SPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); +}); diff --git a/lib/libs/email/preview/Withdraw Rai/CMS/__snapshots__/WithdrwRaiCMS.test.tsx.snap b/lib/libs/email/preview/Withdraw Rai/CMS/__snapshots__/WithdrwRaiCMS.test.tsx.snap new file mode 100644 index 0000000000..661b233a65 --- /dev/null +++ b/lib/libs/email/preview/Withdraw Rai/CMS/__snapshots__/WithdrwRaiCMS.test.tsx.snap @@ -0,0 +1,5779 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Withdraw RAI CMS Email Snapshot Test > renders a Appk Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Withdraw Formal RAI Response for Waiver Package +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for CO-1234.R21.00 was withdrawn by George Harrison george@example.com. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Withdraw Formal RAI Response for Waiver Package +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for CO-1234.R21.00 was withdrawn by George Harrison george@example.com. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw RAI CMS Email Snapshot Test > renders a ChipSPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Withdraw Formal RAI Response for Waiver Package +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for CO-1234.R21.00 was withdrawn by George Harrison george@example.com. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+ +
+ , + "container":
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+ +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Withdraw Formal RAI Response for Waiver Package +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for CO-1234.R21.00 was withdrawn by George Harrison george@example.com. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+ +
+
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+ +
+ , + "container":
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+ +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw RAI CMS Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Withdraw Formal RAI Response for Waiver Package +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for CO-1234.R21.00 was withdrawn by George Harrison george@example.com. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+ +
+
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+ +
+
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+ +
+ , + "container":
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+ +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; diff --git a/lib/libs/email/preview/Withdraw Rai/State/AppK.tsx b/lib/libs/email/preview/Withdraw Rai/State/AppK.tsx index 06f3ebebc2..10c87465d3 100644 --- a/lib/libs/email/preview/Withdraw Rai/State/AppK.tsx +++ b/lib/libs/email/preview/Withdraw Rai/State/AppK.tsx @@ -1,5 +1,5 @@ -import { AppKStateEmail } from "lib/libs/email/content/withdrawRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/withdraw-rai"; +import { AppKStateEmail } from "libs/email/content/withdrawRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/withdraw-rai"; import * as attachments from "../../../mock-data/attachments"; export const relatedEvent = { diff --git a/lib/libs/email/preview/Withdraw Rai/State/CHIP_SPA.tsx b/lib/libs/email/preview/Withdraw Rai/State/CHIP_SPA.tsx index 795c92cd93..38d6ac5b98 100644 --- a/lib/libs/email/preview/Withdraw Rai/State/CHIP_SPA.tsx +++ b/lib/libs/email/preview/Withdraw Rai/State/CHIP_SPA.tsx @@ -1,6 +1,6 @@ -import { ChipSpaStateEmail } from "lib/libs/email/content/withdrawRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/withdraw-rai"; -import { relatedEvent } from "../CMS/AppK"; +import { ChipSpaStateEmail } from "libs/email/content/withdrawRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/withdraw-rai"; +import { relatedEvent } from "./AppK"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Withdraw Rai/State/Medicaid_SPA.tsx b/lib/libs/email/preview/Withdraw Rai/State/Medicaid_SPA.tsx index d7d86b4a79..a1950b3677 100644 --- a/lib/libs/email/preview/Withdraw Rai/State/Medicaid_SPA.tsx +++ b/lib/libs/email/preview/Withdraw Rai/State/Medicaid_SPA.tsx @@ -1,6 +1,6 @@ -import { MedSpaStateEmail } from "lib/libs/email/content/withdrawRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/withdraw-rai"; -import { relatedEvent } from "../CMS/AppK"; +import { MedSpaStateEmail } from "libs/email/content/withdrawRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/withdraw-rai"; +import { relatedEvent } from "./AppK"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Withdraw Rai/State/Waiver_Contracting.tsx b/lib/libs/email/preview/Withdraw Rai/State/Waiver_Contracting.tsx index 118687a8f6..91900a1010 100644 --- a/lib/libs/email/preview/Withdraw Rai/State/Waiver_Contracting.tsx +++ b/lib/libs/email/preview/Withdraw Rai/State/Waiver_Contracting.tsx @@ -1,6 +1,6 @@ -import { Waiver1915bStateEmail } from "lib/libs/email/content/withdrawRai/emailTemplates"; -import { emailTemplateValue } from "lib/libs/email/mock-data/withdraw-rai"; -import { relatedEvent } from "../CMS/AppK"; +import { Waiver1915bStateEmail } from "libs/email/content/withdrawRai/emailTemplates"; +import { emailTemplateValue } from "libs/email/mock-data/withdraw-rai"; +import { relatedEvent } from "./AppK"; import * as attachments from "../../../mock-data/attachments"; export default () => { diff --git a/lib/libs/email/preview/Withdraw Rai/State/WithdrawRaiState.test.tsx b/lib/libs/email/preview/Withdraw Rai/State/WithdrawRaiState.test.tsx new file mode 100644 index 0000000000..c160f70844 --- /dev/null +++ b/lib/libs/email/preview/Withdraw Rai/State/WithdrawRaiState.test.tsx @@ -0,0 +1,29 @@ +import { describe, it, expect } from "vitest"; +import { render } from "@testing-library/react"; +import Appk from "./AppK"; +import CHIP_SPA from "./CHIP_SPA"; +import Medicaid_SPA from "./Medicaid_SPA"; +import Waiver_Contracting from "./Waiver_Contracting"; + +describe("Withdraw RAI State Email Snapshot Test", () => { + it("renders a Appk Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a ChipSPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Medicaid_SPA Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); +}); diff --git a/lib/libs/email/preview/Withdraw Rai/State/__snapshots__/WithdrawRaiState.test.tsx.snap b/lib/libs/email/preview/Withdraw Rai/State/__snapshots__/WithdrawRaiState.test.tsx.snap new file mode 100644 index 0000000000..ae26f43b4f --- /dev/null +++ b/lib/libs/email/preview/Withdraw Rai/State/__snapshots__/WithdrawRaiState.test.tsx.snap @@ -0,0 +1,5400 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Withdraw RAI State Email Snapshot Test > renders a Appk Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Withdraw Formal RAI Response for Waiver Package +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for CO-1234.R21.00 was withdrawn by George Harrison george@example.com. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Withdraw Formal RAI Response for Waiver Package +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for CO-1234.R21.00 was withdrawn by George Harrison george@example.com. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw RAI State Email Snapshot Test > renders a ChipSPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Withdraw Formal RAI Response for Waiver Package +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for CO-1234.R21.00 was withdrawn by George Harrison george@example.com. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+
+ +
+ , + "container":
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+
+ +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw RAI State Email Snapshot Test > renders a Medicaid_SPA Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Withdraw Formal RAI Response for Waiver Package +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for CO-1234.R21.00 was withdrawn by George Harrison george@example.com. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+
+ +
+
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+ +
+ , + "container":
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+ +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Withdraw RAI State Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
+ + + + + +
+ Withdraw Formal RAI Response for Waiver Package +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for CO-1234.R21.00 was withdrawn by George Harrison george@example.com. +

+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-1234.R21.00 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
+
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ CHIP SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions, please contact + + + CHIPSPASubmissionMailBox@cms.hhs.gov + + or your state lead. +

+
+
+ +
+
+ + + + + + + +
+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Medicaid SPA Package ID + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+ +
+
+ + + + + +
+ Waiver CO-24-1234 Withdrawn +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms you have withdrawn a Waiver from CMS for review +

+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
+ , + "container":
+ + + + + +
+ Waiver CO-24-1234 Withdrawn +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + + + +
+ + + + + + +
+
+ + OneMAC Logo + + +
+
+
+

+ This response confirms you have withdrawn a Waiver from CMS for review +

+ + + + + + +
+

+ The OneMAC Submission Portal received a request to withdraw the Formal RAI Response. You are receiving this email notification as the Formal RAI for + CO-24-1234 + was withdrawn by + George Harrison + + george@example.com + . +

+
+ + + + + + +
+ + + + + + + +
+

+ State or Territory + : +

+
+

+ CO +

+
+ + + + + + + +
+

+ Name + : +

+
+

+ George +

+
+ + + + + + + +
+

+ Email Address + : +

+
+

+ test@email.com +

+
+ + + + + + + +
+

+ Waiver Number + : +

+
+

+ CO-24-1234 +

+
+ + + +
+

+

+ Summary: +

+

+

+ This some additional information about the request to withdraw and what makes it important. +

+ + +
+
+
+

+ Files: +

+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+ + + + + + + +
+

+ Budget Documents + : +

+
+

+ + fy2024-budget.xlsx + +

+
+ + + + + + + +
+

+ Public Notice + : +

+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+

+ Tribal Consultation + : +

+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+

+ Other + : +

+
+

+ + misc-documents.pdf + +

+
+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

+

+ Thank you. +

+
+ + + + + + +
+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + + spa@cms.hhs.gov + + or your state lead. +

+
+
+
+ + +
, + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; diff --git a/lib/libs/email/vitest.config.ts b/lib/libs/email/vitest.config.ts new file mode 100644 index 0000000000..980c24e897 --- /dev/null +++ b/lib/libs/email/vitest.config.ts @@ -0,0 +1,11 @@ +import { defineProject } from "vitest/config"; + +export default defineProject({ + test: { + name: "email", + root: ".", + setupFiles: ["./vitest.setup.ts"], + exclude: ["**/node_modules/**"], + environment: "jsdom", + }, +}); diff --git a/lib/libs/email/vitest.setup.ts b/lib/libs/email/vitest.setup.ts new file mode 100644 index 0000000000..8c59f16668 --- /dev/null +++ b/lib/libs/email/vitest.setup.ts @@ -0,0 +1,19 @@ +import { afterAll, afterEach, beforeAll, beforeEach, vi } from "vitest"; + +beforeAll(() => {}); + +beforeEach(() => { + process.env.isDev = "true"; + vi.useFakeTimers(); + const now = new Date(2023, 0, 1); + vi.setSystemTime(now); +}); + +afterEach(() => { + vi.useRealTimers(); + vi.clearAllMocks(); +}); + +afterAll(() => { + vi.clearAllMocks(); +}); diff --git a/lib/vitest.config.ts b/lib/vitest.config.ts index cf56b9015a..538cfdeb47 100644 --- a/lib/vitest.config.ts +++ b/lib/vitest.config.ts @@ -4,7 +4,7 @@ export default defineProject({ test: { root: ".", setupFiles: ["./vitest.setup.ts"], - exclude: ["**/node_modules/**"], + exclude: ["**/node_modules/**", "libs/email/**"], environment: "node", }, }); diff --git a/vitest.workspace.ts b/vitest.workspace.ts index 70dbaa6da9..eac864782a 100644 --- a/vitest.workspace.ts +++ b/vitest.workspace.ts @@ -1,4 +1,3 @@ import { defineWorkspace } from "vitest/config"; -// defineWorkspace provides a nice type hinting DX -export default defineWorkspace(["react-app", "lib"]); +export default defineWorkspace(["react-app", "lib", "lib/libs/email"]); From d0b74ddcdf5d92b74f0f607c78cd643d80db781a Mon Sep 17 00:00:00 2001 From: tiffanyvu Date: Thu, 19 Dec 2024 11:07:42 -0800 Subject: [PATCH 5/5] feat(lambda): functionality for updating ID, values, and deleting packages (#923) * wip * check sinkmain * remove deleted code * rename to handler * add env config * fix parse * fix event body type * add origin * add logs * log * fix test and add log * temp bypass record event * change order of sinkmain if * push into sinkmain * add id into doc * log in sinkmain * format deleted package * add sink change log * change order of sinklog changelog * fix schema * add logs changelog * try adding delete property * fix property * log query * change term * letter s * must not * wip update package fields * add log * omg * try fix test and changelog update fields * transform updated values? * typo * again * try * remove origin * add timestamp? * fix changelog not showing * edit changelog text * meg * changelog admin changes updates, language TBD * edit schema parsing for sinkmain * change schema parsing in changelog * rm commented out code * fix eslint * clean up * remove more logs * readd comment * cleanup zod schema logic * change event name * test adminchange for delete * attachments is undefined for soft deleted packages, add optional * wip * revert safeparse * remove empty test * set default attachments value * move default attachments default value * delete test, will be handled by sinkmain tests * edit todo msg * rm unused code * remove origin property * test * check for existing package id * add update id schema * add admin change type * typo * again * add log * edit log * edit changelog * exclude _index * fix destructuring * source? * test log * hide changelog * ew test * add changemade and types to Document type * add zod to event body * update response status codes * merge and rm console log * rm comment * wip id validation * test logs * again * add logs * logs * fix * test format * log * test moving responses into funcs * test * fix punctuation * wip address comments * rm old code * add comment * rm eslint ignore * move topicname logic * test package event type in changelog * log * logs * fix * move event * move logic * logs * typo * what * log * add mako origin to get to transforms * umm touching opensearch * typo * logs * revert * try * revert * revert changelog * hi * logs * add old id to changelog * offset stuff * logs * logs * duplicate offset * fix * log hits * logs * test * fix * fix * idToBeUpdated * add onemac * fix * clean * move around * clean * remove casting * casting throws type error * fix import and add test --------- Co-authored-by: asharonbaltazar <58940073+asharonbaltazar@users.noreply.github.com> --- lib/lambda/search.ts | 2 + lib/lambda/sinkChangelog.ts | 49 +++- lib/lambda/sinkMainProcessors.test.ts | 81 ++++++ lib/lambda/sinkMainProcessors.ts | 53 +++- lib/lambda/update/adminChangeSchemas.ts | 50 ++++ lib/lambda/update/getPackageType.ts | 26 ++ lib/lambda/update/updatePackage.ts | 232 ++++++++++++++++++ .../opensearch/changelog/index.ts | 5 +- .../shared-types/opensearch/main/index.ts | 3 + lib/stacks/api.ts | 10 + .../features/package/admin-changes/index.tsx | 3 - .../package/package-activity/index.tsx | 2 +- 12 files changed, 502 insertions(+), 14 deletions(-) create mode 100644 lib/lambda/update/adminChangeSchemas.ts create mode 100644 lib/lambda/update/getPackageType.ts create mode 100644 lib/lambda/update/updatePackage.ts diff --git a/lib/lambda/search.ts b/lib/lambda/search.ts index a4af6bfa05..f823579122 100644 --- a/lib/lambda/search.ts +++ b/lib/lambda/search.ts @@ -24,6 +24,8 @@ export const getSearchData = async (event: APIGatewayEvent) => { query.query = query?.query || {}; query.query.bool = query.query?.bool || {}; query.query.bool.must = query.query.bool?.must || []; + query.query.bool.must_not = query.query.bool?.must_not || []; + query.query.bool.must_not.push({ term: { deleted: true } }); const stateFilter = await getStateFilter(event); if (stateFilter) { diff --git a/lib/lambda/sinkChangelog.ts b/lib/lambda/sinkChangelog.ts index 9c2fcae00b..d2fe78a00c 100644 --- a/lib/lambda/sinkChangelog.ts +++ b/lib/lambda/sinkChangelog.ts @@ -2,6 +2,12 @@ import { Handler } from "aws-lambda"; import { decodeBase64WithUtf8 } from "shared-utils"; import { KafkaEvent, KafkaRecord, opensearch } from "shared-types"; import { ErrorType, bulkUpdateDataWrapper, getTopic, logError } from "../libs/sink-lib"; +import { + transformUpdateValuesSchema, + transformDeleteSchema, + transformedUpdateIdSchema, +} from "./update/adminChangeSchemas"; +import { getPackageChangelog } from "lib/libs/api/package"; // One notable difference between this handler and sinkMain's... // The order in which records are processed for the changelog doesn't matter. @@ -48,6 +54,7 @@ const processAndIndex = async ({ for (const kafkaRecord of kafkaRecords) { console.log(JSON.stringify(kafkaRecord, null, 2)); const { value, offset } = kafkaRecord; + try { // If a legacy tombstone, continue if (!value) { @@ -57,6 +64,45 @@ const processAndIndex = async ({ // Parse the kafka record's value const record = JSON.parse(decodeBase64WithUtf8(value)); + // query all changelog entries for this ID and create copies of all entries with new ID + if (record.isAdminChange) { + const schema = transformDeleteSchema(offset).or( + transformUpdateValuesSchema(offset).or(transformedUpdateIdSchema), + ); + + const result = schema.safeParse(record); + + if (result.success) { + if (result.data.adminChangeType === "update-id") { + docs.forEach((log) => { + const recordOffset = log.id.split("-").at(-1); + + docs.push({ + ...log, + id: `${result.data.id}-${recordOffset}`, + packageId: result.data.id, + }); + }); + const packageChangelogs = await getPackageChangelog(result.data.idToBeUpdated); + + packageChangelogs.hits.hits.forEach((log) => { + const recordOffset = log._id.split("-").at(-1); + docs.push({ + ...log._source, + id: `${result.data.id}-${recordOffset}`, + packageId: result.data.id, + }); + }); + } else { + docs.push(result.data); + } + } else { + console.log( + `Skipping package with invalid format for type "${record.adminChangeType}"`, + result.error.message, + ); + } + } // If we're not a mako event, continue // TODO: handle legacy. for now, just continue if (!record.event || record?.origin !== "mako") { @@ -64,9 +110,6 @@ const processAndIndex = async ({ } // If the event is a supported event, transform and push to docs array for indexing - console.log("event below"); - console.log(record.event); - if (record.event in transforms) { const transformForEvent = transforms[record.event as keyof typeof transforms]; diff --git a/lib/lambda/sinkMainProcessors.test.ts b/lib/lambda/sinkMainProcessors.test.ts index 83e63c8b30..4b289f4f07 100644 --- a/lib/lambda/sinkMainProcessors.test.ts +++ b/lib/lambda/sinkMainProcessors.test.ts @@ -125,6 +125,87 @@ describe("insertOneMacRecordsFromKafkaIntoMako", () => { ); }); + it("handles valid kafka admin records", () => { + insertOneMacRecordsFromKafkaIntoMako( + [ + createKafkaRecord({ + topic: TOPIC, + key: "TUQtMjQtMjMwMA==", + value: convertObjToBase64({ + id: "MD-24-2301", + submitterName: "George Harrison", + submitterEmail: "george@example.com", + changeMade: "ID has been updated.", + isAdminChange: true, + adminChangeType: "update-id", + idToBeUpdated: "MD-24-2300", + }), + }), + createKafkaRecord({ + topic: TOPIC, + key: "TUQtMjQtMjMwMA==", + value: convertObjToBase64({ + id: "MD-24-2301", + submitterName: "George Harrison", + submitterEmail: "george@example.com", + changeMade: "title has been updated.", + isAdminChange: true, + adminChangeType: "update-values", + title: "updated title", + }), + }), + createKafkaRecord({ + topic: TOPIC, + key: "TUQtMjQtMjMwMA==", + value: convertObjToBase64({ + id: "MD-24-2301", + submitterName: "George Harrison", + submitterEmail: "george@example.com", + isAdminChange: true, + adminChangeType: "delete", + deleted: true, + }), + }), + ], + TOPIC, + ); + + expect(spiedOnBulkUpdateDataWrapper).toBeCalledWith( + [ + // record deleted + { + id: "MD-24-2301", + submitterName: "George Harrison", + submitterEmail: "george@example.com", + changeMade: "ID has been updated.", + isAdminChange: true, + adminChangeType: "update-id", + idToBeUpdated: "MD-24-2300", + }, + // property updated + { + id: "MD-24-2301", + submitterName: "George Harrison", + submitterEmail: "george@example.com", + changeMade: "title has been updated.", + isAdminChange: true, + adminChangeType: "update-values", + title: "updated title", + }, + // id updated + { + id: "MD-24-2301", + submitterName: "George Harrison", + submitterEmail: "george@example.com", + isAdminChange: true, + adminChangeType: "delete", + deleted: true, + }, + ], + "main", + ); + }); + it("skips value-less kafka records", () => { insertOneMacRecordsFromKafkaIntoMako( [ diff --git a/lib/lambda/sinkMainProcessors.ts b/lib/lambda/sinkMainProcessors.ts index 3615a3cf06..c95359a25d 100644 --- a/lib/lambda/sinkMainProcessors.ts +++ b/lib/lambda/sinkMainProcessors.ts @@ -3,25 +3,44 @@ import { KafkaRecord, opensearch, SeatoolRecordWithUpdatedDate } from "shared-ty import { Document, transforms } from "shared-types/opensearch/main"; import { decodeBase64WithUtf8 } from "shared-utils"; import { isBefore } from "date-fns"; +import { + deleteAdminChangeSchema, + updateValuesAdminChangeSchema, + updateIdAdminChangeSchema, +} from "./update/adminChangeSchemas"; const removeDoubleQuotesSurroundingString = (str: string) => str.replace(/^"|"$/g, ""); +const adminRecordSchema = deleteAdminChangeSchema + .or(updateValuesAdminChangeSchema) + .or(updateIdAdminChangeSchema); type OneMacRecord = { id: string; - makoChangedDate: string | null; + [key: string]: unknown | undefined; }; +type ParsedRecordFromKafka = Partial<{ + event: string; + origin: string; + isAdminChange: boolean; + adminChangeType: string; +}>; + const isRecordAOneMacRecord = ( - record: Partial<{ - event: string; - origin: string; - }>, + record: ParsedRecordFromKafka, ): record is { event: keyof typeof transforms } => typeof record === "object" && record?.event !== undefined && record.event in transforms && record?.origin === "mako"; +const isRecordAnAdminOneMacRecord = ( + record: ParsedRecordFromKafka, +): record is { adminChangeType: string; isAdminChange: boolean } => + typeof record === "object" && + record?.isAdminChange === true && + record?.adminChangeType !== undefined; + const getOneMacRecordWithAllProperties = ( value: string, topicPartition: string, @@ -29,6 +48,28 @@ const getOneMacRecordWithAllProperties = ( ): OneMacRecord | undefined => { const record = JSON.parse(decodeBase64WithUtf8(value)); + if (isRecordAnAdminOneMacRecord(record)) { + const safeRecord = adminRecordSchema.safeParse(record); + + if (safeRecord.success === false) { + console.log(`Skipping package with invalid format for type "${record.adminChangeType}"`); + + logError({ + type: ErrorType.VALIDATION, + error: safeRecord.error.errors, + metadata: { topicPartition, kafkaRecord, record }, + }); + + return; + } + + const { data: oneMacAdminRecord } = safeRecord; + + console.log(`admin record: ${JSON.stringify(oneMacAdminRecord, null, 2)}`); + + return oneMacAdminRecord; + } + if (isRecordAOneMacRecord(record)) { const transformForEvent = transforms[record.event]; @@ -37,7 +78,7 @@ const getOneMacRecordWithAllProperties = ( if (safeEvent.success === false) { logError({ type: ErrorType.VALIDATION, - error: safeEvent.error, + error: safeEvent.error.errors, metadata: { topicPartition, kafkaRecord, record }, }); diff --git a/lib/lambda/update/adminChangeSchemas.ts b/lib/lambda/update/adminChangeSchemas.ts new file mode 100644 index 0000000000..274c8b4af0 --- /dev/null +++ b/lib/lambda/update/adminChangeSchemas.ts @@ -0,0 +1,50 @@ +import { z } from "zod"; + +export const deleteAdminChangeSchema = z + .object({ + id: z.string(), + deleted: z.boolean(), + adminChangeType: z.literal("delete"), + }) + .and(z.record(z.string(), z.any())); + +export const updateValuesAdminChangeSchema = z + .object({ + id: z.string(), + adminChangeType: z.literal("update-values"), + }) + .and(z.record(z.string(), z.any())); + +export const updateIdAdminChangeSchema = z + .object({ + id: z.string(), + adminChangeType: z.literal("update-id"), + idToBeUpdated: z.string(), + }) + .and(z.record(z.string(), z.any())); + +export const transformDeleteSchema = (offset: number) => + deleteAdminChangeSchema.transform((data) => ({ + ...data, + event: "delete", + packageId: data.id, + id: `${data.id}-${offset}`, + timestamp: Date.now(), + })); + +export const transformUpdateValuesSchema = (offset: number) => + updateValuesAdminChangeSchema.transform((data) => ({ + ...data, + event: "update-values", + packageId: data.id, + id: `${data.id}-${offset}`, + timestamp: Date.now(), + })); + +export const transformedUpdateIdSchema = updateIdAdminChangeSchema.transform((data) => ({ + ...data, + event: "update-id", + packageId: data.id, + id: `${data.id}`, + timestamp: Date.now(), +})); \ No newline at end of file diff --git a/lib/lambda/update/getPackageType.ts b/lib/lambda/update/getPackageType.ts new file mode 100644 index 0000000000..7383efae94 --- /dev/null +++ b/lib/lambda/update/getPackageType.ts @@ -0,0 +1,26 @@ +import { response } from "lib/libs/handler-lib"; +import { events } from "lib/packages/shared-types"; +import { getPackageChangelog } from "lib/libs/api/package"; + +export const getPackageType = async (packageId: string) => { + // use event of current package to determine how ID should be formatted + try { + const packageChangelog = await getPackageChangelog(packageId); + const packageSubmissionType = packageChangelog.hits.hits.find( + (pkg) => pkg._source.event in events, + ); + + if (!packageSubmissionType) { + throw new Error("The type of package could not be determined."); + } + + return packageSubmissionType._source.event; + } catch (error) { + return response({ + statusCode: 500, + body: { + message: error.message || "An error occurred determining the package submission type.", + }, + }); + } +}; diff --git a/lib/lambda/update/updatePackage.ts b/lib/lambda/update/updatePackage.ts new file mode 100644 index 0000000000..24592a66a6 --- /dev/null +++ b/lib/lambda/update/updatePackage.ts @@ -0,0 +1,232 @@ +import { response } from "libs/handler-lib"; +import { APIGatewayEvent } from "aws-lambda"; +import { getPackage } from "libs/api/package"; +import { produceMessage } from "libs/api/kafka"; +import { ItemResult } from "shared-types/opensearch/main"; +import { getPackageType } from "./getPackageType"; +import { events } from "lib/packages/shared-types"; +import { z } from "zod"; + +const sendDeleteMessage = async (packageId: string) => { + const topicName = process.env.topicName as string; + if (!topicName) { + throw new Error("Topic name is not defined"); + } + await produceMessage( + topicName, + packageId, + JSON.stringify({ + id: packageId, + deleted: true, + isAdminChange: true, + adminChangeType: "delete", + }), + ); + + return response({ + statusCode: 200, + body: { message: `${packageId} has been deleted.` }, + }); +}; + +const sendUpdateValuesMessage = async ({ + currentPackage, + updatedFields, + changeReason, +}: { + currentPackage: ItemResult; + updatedFields: object; + changeReason?: string; +}) => { + const topicName = process.env.topicName as string; + if (!topicName) { + throw new Error("Topic name is not defined"); + } + const invalidFields = Object.keys(updatedFields).filter( + (field) => !(field in currentPackage._source), + ); + if (invalidFields.length > 0) { + return response({ + statusCode: 400, + body: { message: `Cannot update invalid field(s): ${invalidFields.join(", ")}` }, + }); + } + + if ("id" in updatedFields) { + return response({ + statusCode: 400, + body: { message: "ID is not a valid field to update" }, + }); + } + + const fieldNames = Object.keys(updatedFields).join(", "); + const changeMadeText = `${fieldNames} ${ + Object.keys(updatedFields).length > 1 ? "have" : "has" + } been updated`; + + await produceMessage( + topicName, + currentPackage._id, + JSON.stringify({ + id: currentPackage._id, + ...updatedFields, + isAdminChange: true, + adminChangeType: "update-values", + changeMade: changeMadeText, + changeReason, + }), + ); + + return response({ + statusCode: 200, + body: { message: `${changeMadeText} in package ${currentPackage._id}.` }, + }); +}; + +const sendUpdateIdMessage = async ({ + currentPackage, + updatedId, +}: { + currentPackage: ItemResult; + updatedId: string; +}) => { + const topicName = process.env.topicName as string; + if (!topicName) { + throw new Error("Topic name is not defined"); + } + // ID and changeMade are excluded; the rest of the object has to be spread into the new package + const { + id: _id, + changeMade: _changeMade, + origin: _origin, + ...remainingFields + } = currentPackage._source; + + if (!updatedId) { + return response({ + statusCode: 400, + body: { message: "New ID required to update package" }, + }); + } + + // check if a package with this new ID already exists + const packageExists = await getPackage(updatedId); + if (packageExists) { + return response({ + statusCode: 400, + body: { message: "This ID already exists" }, + }); + } + // use event of current package to determine how ID should be formatted + const packageEvent = await getPackageType(currentPackage._id); + const packageSubmissionTypeSchema = events[packageEvent as keyof typeof events].baseSchema; + + if (!packageSubmissionTypeSchema) { + return response({ + statusCode: 500, + body: { message: "Could not validate the ID of this type of package." }, + }); + } + + const idSchema = packageSubmissionTypeSchema.shape.id; + const parsedId = idSchema.safeParse(updatedId); + + if (!parsedId.success) { + return response({ + statusCode: 400, + body: parsedId.error.message, + }); + } + + await sendDeleteMessage(currentPackage._id); + await produceMessage( + topicName, + updatedId, + JSON.stringify({ + id: updatedId, + idToBeUpdated: currentPackage._id, + ...remainingFields, + origin: "OneMAC", + changeMade: "ID has been updated.", + isAdminChange: true, + adminChangeType: "update-id", + }), + ); + + return response({ + statusCode: 200, + body: { message: `The ID of package ${currentPackage._id} has been updated to ${updatedId}.` }, + }); +}; + +const updatePackageEventBodySchema = z.object({ + packageId: z.string(), + action: z.enum(["update-values", "update-id", "delete"]), + updatedId: z.string().optional(), + updatedFields: z.record(z.unknown()).optional(), + changeReason: z.string().optional(), +}); + +export const handler = async (event: APIGatewayEvent) => { + if (!event.body) { + return response({ + statusCode: 400, + body: { message: "Event body required" }, + }); + } + try { + const parseEventBody = (body: unknown) => { + return updatePackageEventBodySchema.parse(typeof body === "string" ? JSON.parse(body) : body); + }; + + const { + packageId, + action, + updatedId = packageId, + updatedFields = {}, + changeReason, + } = parseEventBody(event.body); + + if (!packageId || !action) { + return response({ + statusCode: 400, + body: { message: "Package ID and action are required" }, + }); + } + + const currentPackage = await getPackage(packageId); + + if (!currentPackage) { + return response({ + statusCode: 404, + body: { message: "No record found for the given id" }, + }); + } + + if (action === "delete") { + return await sendDeleteMessage(packageId); + } + + if (action === "update-id") { + return await sendUpdateIdMessage({ currentPackage, updatedId }); + } + + if (action === "update-values") { + return await sendUpdateValuesMessage({ + currentPackage, + updatedFields, + changeReason, + }); + } + return response({ + statusCode: 400, + body: { message: "Could not update package." }, + }); + } catch (err) { + console.error("Error has occured modifying package:", err); + return response({ + statusCode: 500, + body: { message: err.message || "Internal Server Error" }, + }); + } +}; diff --git a/lib/packages/shared-types/opensearch/changelog/index.ts b/lib/packages/shared-types/opensearch/changelog/index.ts index 91cea308f2..f6137b4981 100644 --- a/lib/packages/shared-types/opensearch/changelog/index.ts +++ b/lib/packages/shared-types/opensearch/changelog/index.ts @@ -79,7 +79,10 @@ export type Document = Omit & | "toggle-withdraw-rai" | "upload-subsequent-documents" | "withdraw-package" - | "withdraw-rai"; + | "withdraw-rai" + | "update-values" + | "update-id" + | "delete"; }; export type Response = Res; diff --git a/lib/packages/shared-types/opensearch/main/index.ts b/lib/packages/shared-types/opensearch/main/index.ts index 672d7945b0..131c807321 100644 --- a/lib/packages/shared-types/opensearch/main/index.ts +++ b/lib/packages/shared-types/opensearch/main/index.ts @@ -63,6 +63,9 @@ export type Document = AppkDocument & changelog?: Changelog[]; appkChildren?: Omit[]; deleted?: boolean; + adminChangeType?: string; + changeMade?: string; + idToBeUpdated?: string; }; export type Response = Res; diff --git a/lib/stacks/api.ts b/lib/stacks/api.ts index c6d8fd2ce1..f8cee59b1b 100644 --- a/lib/stacks/api.ts +++ b/lib/stacks/api.ts @@ -281,6 +281,16 @@ export class Api extends cdk.NestedStack { entry: join(__dirname, "../lambda/getAllForms.ts"), environment: {}, }, + { + id: "updatePackage", + entry: join(__dirname, "../lambda/update/updatePackage.ts"), + environment: { + topicName, + brokerString, + osDomain: `https://${openSearchDomainEndpoint}`, + indexNamespace, + }, + }, ]; const lambdas = lambdaDefinitions.reduce((acc, lambdaDef) => { diff --git a/react-app/src/features/package/admin-changes/index.tsx b/react-app/src/features/package/admin-changes/index.tsx index 5bf8503ccb..403827f0ca 100644 --- a/react-app/src/features/package/admin-changes/index.tsx +++ b/react-app/src/features/package/admin-changes/index.tsx @@ -59,9 +59,6 @@ export const AdminChange: FC = (props) => { } return ["Disable formal RAI response withdraw", AC_WithdrawDisabled]; } - - // case "update-id": - // return ["Package ID Update", AC_UpdateId]; case "legacy-admin-change": return [props.changeType || "Manual Update", AC_LegacyAdminChange]; default: diff --git a/react-app/src/features/package/package-activity/index.tsx b/react-app/src/features/package/package-activity/index.tsx index 9ae69d9b45..29479345cf 100644 --- a/react-app/src/features/package/package-activity/index.tsx +++ b/react-app/src/features/package/package-activity/index.tsx @@ -48,7 +48,7 @@ type SubmissionProps = { }; const Submission = ({ packageActivity }: SubmissionProps) => { - const { attachments, id, packageId, additionalInformation } = packageActivity; + const { attachments = [], id, packageId, additionalInformation } = packageActivity; const { onUrl, loading, onZip } = useAttachmentService({ packageId }); return (