@@ -262,7 +262,7 @@ describe('UserFunction.load method', () => {
262262    response . should . equal ( 'Hello from extensionless CJS' ) ; 
263263  } ) ; 
264264
265-   it ( 'should fail to load ESM syntax from extensionless file (no package.json)' ,  async  ( )  =>  { 
265+   xit ( 'should fail to load ESM syntax from extensionless file (no package.json)' ,  async  ( )  =>  { 
266266    await  UserFunction . load ( 
267267      path . join ( HANDLERS_ROOT ,  'extensionless' ) , 
268268      'esm-extensionless.handler' , 
@@ -280,7 +280,7 @@ describe('UserFunction.load method', () => {
280280    response . should . equal ( 'Hello from extensionless CJS' ) ; 
281281  } ) ; 
282282
283-   it ( 'should fail to load ESM handler from extensionless file with type:commonjs' ,  async  ( )  =>  { 
283+   xit ( 'should fail to load ESM handler from extensionless file with type:commonjs' ,  async  ( )  =>  { 
284284    // package.json is ignored in the case of extensionless 
285285    await  UserFunction . load ( 
286286      path . join ( HANDLERS_ROOT ,  'pkg' ,  'type-cjs' ) , 
@@ -299,7 +299,7 @@ describe('UserFunction.load method', () => {
299299    response . should . equal ( 'Hello from extensionless CJS' ) ; 
300300  } ) ; 
301301
302-   it ( 'should fail to load ESM handler from extensionless file with type:module' ,  async  ( )  =>  { 
302+   xit ( 'should fail to load ESM handler from extensionless file with type:module' ,  async  ( )  =>  { 
303303    // package.json is ignored in the case of extensionless 
304304    await  UserFunction . load ( 
305305      path . join ( HANDLERS_ROOT ,  'pkg' ,  'type-esm' ) , 
@@ -344,7 +344,7 @@ describe('UserFunction.load method', () => {
344344    ) ; 
345345  } ) ; 
346346
347-   it ( 'should fail to load ESM handler from JS file without type context' ,  async  ( )  =>  { 
347+   xit ( 'should fail to load ESM handler from JS file without type context' ,  async  ( )  =>  { 
348348    await  UserFunction . load ( 
349349      path . join ( HANDLERS_ROOT ,  'pkg-less' ) , 
350350      'esmModule.handler' , 
0 commit comments