We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c504c55 commit e5e6fd5Copy full SHA for e5e6fd5
test/Test-FileStore.js
@@ -146,7 +146,8 @@ describe('FileStore', () => {
146
});
147
148
it('should open a stream and resolve the new offset', (done) => {
149
- const file_store = new FileStore({ path: STORE_PATH, directory: FILES_DIRECTORY });
+ const file_store = new FileStore({ path: STORE_PATH });
150
+ // const file_store = new FileStore({ path: STORE_PATH, directory: FILES_DIRECTORY });
151
const write_stream = fs.createReadStream(TEST_FILE_PATH);
152
write_stream.once('open', () => {
153
file_store.write(write_stream, TEST_FILE_NAME, 0)
0 commit comments