File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
packages/php-wasm/node/src/test Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -207,8 +207,6 @@ describe('Mounting', () => {
207207 createNodeFsMountHandler ( directoryPath )
208208 ) ;
209209
210- console . log ( 'vfsFiles' , php . listFiles ( directoryMountPoint ) ) ;
211-
212210 // Recursively compare directory structure
213211 const compareDirectories = (
214212 vfsPath : string ,
@@ -217,9 +215,7 @@ describe('Mounting', () => {
217215 if ( ! fs . existsSync ( localPath ) ) return ;
218216
219217 const localFiles = fs . readdirSync ( localPath ) ;
220- console . log ( 'localFiles' , localPath , localFiles ) ;
221218 const vfsFiles = php . listFiles ( vfsPath ) ;
222- console . log ( 'vfsFiles' , vfsPath , vfsFiles ) ;
223219 expect ( vfsFiles . sort ( ) ) . toEqual ( localFiles . sort ( ) ) ;
224220
225221 localFiles . forEach ( ( file ) => {
You can’t perform that action at this time.
0 commit comments