From c613604da564f02652fe511147c405af67d88696 Mon Sep 17 00:00:00 2001 From: Andy Chou Date: Mon, 14 May 2018 11:58:48 -0700 Subject: [PATCH] memory-fs: create test for optional options --- types/memory-fs/test/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/memory-fs/test/index.ts b/types/memory-fs/test/index.ts index 07abb3e3fe..16d477baf2 100644 --- a/types/memory-fs/test/index.ts +++ b/types/memory-fs/test/index.ts @@ -15,3 +15,7 @@ fs.writeFile('hello', 'hahahahah', 'utf-8', function (err) { console.log(err.message); } }); + +fs.createReadStream('hello'); + +fs.createWriteStream('hello'); \ No newline at end of file