@@ -262,7 +262,7 @@ describe('UserFunction.load method', () => {
262
262
response . should . equal ( 'Hello from extensionless CJS' ) ;
263
263
} ) ;
264
264
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 ( ) => {
266
266
await UserFunction . load (
267
267
path . join ( HANDLERS_ROOT , 'extensionless' ) ,
268
268
'esm-extensionless.handler' ,
@@ -280,7 +280,7 @@ describe('UserFunction.load method', () => {
280
280
response . should . equal ( 'Hello from extensionless CJS' ) ;
281
281
} ) ;
282
282
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 ( ) => {
284
284
// package.json is ignored in the case of extensionless
285
285
await UserFunction . load (
286
286
path . join ( HANDLERS_ROOT , 'pkg' , 'type-cjs' ) ,
@@ -299,7 +299,7 @@ describe('UserFunction.load method', () => {
299
299
response . should . equal ( 'Hello from extensionless CJS' ) ;
300
300
} ) ;
301
301
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 ( ) => {
303
303
// package.json is ignored in the case of extensionless
304
304
await UserFunction . load (
305
305
path . join ( HANDLERS_ROOT , 'pkg' , 'type-esm' ) ,
@@ -344,7 +344,7 @@ describe('UserFunction.load method', () => {
344
344
) ;
345
345
} ) ;
346
346
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 ( ) => {
348
348
await UserFunction . load (
349
349
path . join ( HANDLERS_ROOT , 'pkg-less' ) ,
350
350
'esmModule.handler' ,
0 commit comments