@@ -24,7 +24,7 @@ type TestCase<T = void> = {
2424 generateWranglerConfig : ( setupResult : T ) => RawConfig ;
2525 expectedResponseMatch : string | RegExp ;
2626 // Flag for resources that can work without remote bindings opt-in
27- worksWithoutMixedMode ?: boolean ;
27+ worksWithoutRemoteBindings ?: boolean ;
2828} ;
2929
3030const testCases : TestCase < Record < string , string > > [ ] = [
@@ -107,7 +107,7 @@ const testCases: TestCase<Record<string, string>>[] = [
107107 } ) ,
108108 expectedResponseMatch : "This is a response from Workers AI" ,
109109 // AI bindings work without opt in flag flag
110- worksWithoutMixedMode : true ,
110+ worksWithoutRemoteBindings : true ,
111111 } ,
112112 {
113113 name : "Browser" ,
@@ -136,8 +136,8 @@ const testCases: TestCase<Record<string, string>>[] = [
136136 } ,
137137 } ) ,
138138 expectedResponseMatch : "image/avif" ,
139- // The Images binding "works" without opt in flag because the current default is an older mixed-mode-style implementation
140- worksWithoutMixedMode : true ,
139+ // The Images binding "works" without opt in flag because the current default is an older remote binding implementation
140+ worksWithoutRemoteBindings : true ,
141141 } ,
142142 {
143143 name : "Vectorize" ,
@@ -297,7 +297,7 @@ describe("Wrangler Mixed Mode E2E Tests", () => {
297297
298298 it ( "works with remote bindings enabled" , async ( ) => {
299299 await helper . seed (
300- path . resolve ( __dirname , "./seed-files/mixed-mode -workers" )
300+ path . resolve ( __dirname , "./seed-files/remote-binding -workers" )
301301 ) ;
302302
303303 await writeWranglerConfig ( testCase , helper ) ;
@@ -310,13 +310,13 @@ describe("Wrangler Mixed Mode E2E Tests", () => {
310310 expect ( response ) . toMatch ( testCase . expectedResponseMatch ) ;
311311 } ) ;
312312
313- it . skipIf ( testCase . worksWithoutMixedMode ) (
313+ it . skipIf ( testCase . worksWithoutRemoteBindings ) (
314314 "fails when remote bindings is disabled" ,
315315 // Turn off retries because this test is expected to fail
316316 { retry : 0 , fails : true } ,
317317 async ( ) => {
318318 await helper . seed (
319- path . resolve ( __dirname , "./seed-files/mixed-mode -workers" )
319+ path . resolve ( __dirname , "./seed-files/remote-binding -workers" )
320320 ) ;
321321
322322 await writeWranglerConfig ( testCase , helper ) ;
@@ -342,7 +342,7 @@ describe("Wrangler Mixed Mode E2E Tests", () => {
342342 beforeAll ( async ( ) => {
343343 helper = new WranglerE2ETestHelper ( ) ;
344344 await helper . seed (
345- path . resolve ( __dirname , "./seed-files/mixed-mode -workers" )
345+ path . resolve ( __dirname , "./seed-files/remote-binding -workers" )
346346 ) ;
347347
348348 await helper . seed ( {
0 commit comments