fune/toolkit/components/osfile/tests/xpcshell/test_osfile_async_flush.js
Victor Porof 4a06c925ac Bug 1561435 - Format toolkit/components/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D36052

--HG--
extra : source : b5be5b4f4b47c256e28a29f665dc754f6407ee7f
2019-07-05 11:14:05 +02:00

31 lines
618 B
JavaScript

"use strict";
const { OS } = ChromeUtils.import("resource://gre/modules/osfile.jsm");
function run_test() {
do_test_pending();
run_next_test();
}
/**
* Test to ensure that |File.prototype.flush| is available in the async API.
*/
add_task(async function test_flush() {
let path = OS.Path.join(
OS.Constants.Path.tmpDir,
"test_osfile_async_flush.tmp"
);
let file = await OS.File.open(path, { trunc: true, write: true });
try {
try {
await file.flush();
} finally {
await file.close();
}
} finally {
await OS.File.remove(path);
}
});
add_task(do_test_finished);