@@ -137,7 +137,7 @@ test('public uninstall entrypoints reuse the installer without leaking control s
137137
138138test ( 'Vercel routes explicit installer paths through the secured API contract' , ( ) => {
139139 const config = JSON . parse ( read ( vercelPath ) ) ;
140- const stableRef = '2f34dd5387e02bed79765a204ad0c77cb09c20bb ' ;
140+ const stableRef = 'b24932777e1be13a6a877109293e4f4fa5628c3a ' ;
141141 assert . equal ( config . env . CONTEXA_STABLE_INSTALLER_REF , stableRef ) ;
142142 assert . equal ( config . redirects , undefined ,
143143 'direct redirects bypass the API response security headers' ) ;
@@ -198,10 +198,10 @@ test('api prioritizes explicit paths and exposes immutable version URLs', () =>
198198
199199 const originalStableRef = process . env . CONTEXA_STABLE_INSTALLER_REF ;
200200 try {
201- process . env . CONTEXA_STABLE_INSTALLER_REF = '2f34dd5387e02bed79765a204ad0c77cb09c20bb ' ;
201+ process . env . CONTEXA_STABLE_INSTALLER_REF = 'b24932777e1be13a6a877109293e4f4fa5628c3a ' ;
202202 const stable = invoke ( '/' , 'WindowsPowerShell/5.1' ) ;
203203 assert . equal ( stable . statusCode , 302 ) ;
204- assert . equal ( stable . headers . location , 'https://raw.githubusercontent.com/contexa-security/install-ctxa/2f34dd5387e02bed79765a204ad0c77cb09c20bb /install.ps1' ) ;
204+ assert . equal ( stable . headers . location , 'https://raw.githubusercontent.com/contexa-security/install-ctxa/b24932777e1be13a6a877109293e4f4fa5628c3a /install.ps1' ) ;
205205 assert . equal ( stable . headers [ 'content-type' ] , 'text/plain; charset=utf-8' ) ;
206206 assert . equal ( stable . headers [ 'cache-control' ] , 'no-store' ) ;
207207 assert . equal ( stable . headers [ 'x-content-type-options' ] , 'nosniff' ) ;
0 commit comments