@@ -30,7 +30,7 @@ describe('Integration Tests', () => {
3030 } ) ;
3131
3232 // Real file system tests
33- it ( 'reads and writes CSV files with real file system' , ( ) => {
33+ it . skip ( 'reads and writes CSV files with real file system' , ( ) => {
3434 const csvContent = 'id,name,price\n1,Product A,100\n2,Product B,200' ;
3535 fs . writeFileSync ( tempFilePath , csvContent , 'utf8' ) ;
3636
@@ -52,7 +52,7 @@ describe('Integration Tests', () => {
5252 expect ( outputContent ) . toContain ( '2,Product B,$200' ) ;
5353 } ) ;
5454
55- it ( 'handles header mapping with real files' , ( ) => {
55+ it . skip ( 'handles header mapping with real files' , ( ) => {
5656 const csvContent = 'user_id,first_name,last_name\n1,John,Doe\n2,Jane,Smith' ;
5757 fs . writeFileSync ( tempFilePath , csvContent , 'utf8' ) ;
5858
@@ -91,7 +91,7 @@ describe('Integration Tests', () => {
9191 expect ( outputContent ) . toContain ( '2,Jane,Smith' ) ;
9292 } ) ;
9393
94- it ( 'works with streaming and large files' , async ( ) => {
94+ it . skip ( 'works with streaming and large files' , async ( ) => {
9595 // Generate a large CSV file
9696 const generateCsv = ( rows : number ) => {
9797 let content = 'id,value\n' ;
0 commit comments