Skip to content

Commit d3ab7b7

Browse files
committed
Remove debug logs
1 parent 9517bc5 commit d3ab7b7

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/php-wasm/node/src/test/mounting.spec.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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) => {

0 commit comments

Comments
 (0)