diff options
Diffstat (limited to 'tests/unistd/isatty.js')
-rw-r--r-- | tests/unistd/isatty.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/unistd/isatty.js b/tests/unistd/isatty.js new file mode 100644 index 00000000..6399f9e9 --- /dev/null +++ b/tests/unistd/isatty.js @@ -0,0 +1,5 @@ +FS.createDevice('/', 'read', function() {}, null); +FS.createDevice('/', 'write', null, function() {}); +FS.createDevice('/', 'all', function() {}, function() {}); +FS.createFolder('/', 'folder', true, true); +FS.createDataFile('/', 'file', true, true); |