Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
var mock = require('mock-fs');
module.exports = {
'/path/to/dir': {
'.system': 'SYSTEM',
'def.dat': 'DEF',
'abc.txt': 'ABC',
'error-file.dat': mock.symlink({path:'/fake/path/file'}),
'subdir': {
'.dot': 'DOT',
'test456.dat': '456',
'test789.txt': '789',
'test123.txt': '123',
'subsubdir': {
'.hidden': 'HIDDEN',
'abc123.txt': '123',
'def456.dat': '456'
}
},
'otherdir': {
'.other': 'DOT',
'error-file.dat': mock.symlink({path:'/fake/path/file'}),
'test789.txt': '789',
'test123.txt': '123',
'subsubdir': {
'.hidden': 'HIDDEN',
'abc123.txt': '123',
'def456.dat': '456'
}
}
}
};