Skip to content

Commit b4ac19e

Browse files
test: add flag scenario in test-fs-write-file-sync
fs.writeFileSync takes flag param to define the file opening semantics. Add a scenario that covers flags as well.
1 parent f34ca9f commit b4ac19e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test/parallel/test-fs-write-file-sync.js

+9
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,12 @@ function closeSync() {
9696
openCount--;
9797
return fs._closeSync.apply(fs, arguments);
9898
}
99+
100+
// Test writeFileSync with flags
101+
const file4 = path.join(tmpdir.path, 'testWriteFileSyncFlags.txt');
102+
103+
fs.writeFileSync(file4, 'hello ', { encoding: 'utf8', flag: 'a' });
104+
fs.writeFileSync(file4, 'world!', { encoding: 'utf8', flag: 'a' });
105+
106+
content = fs.readFileSync(file4, { encoding: 'utf8' });
107+
assert.strictEqual(content, 'hello world!');

0 commit comments

Comments
 (0)