mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 02:13:08 +09:00
16 lines
304 B
JavaScript
16 lines
304 B
JavaScript
"use strict";
|
|
|
|
Components.utils.import("resource://gre/modules/osfile.jsm");
|
|
|
|
/**
|
|
* A trivial test ensuring that we can call osfile from xpcshell.
|
|
* (see bug 808161)
|
|
*/
|
|
|
|
function run_test() {
|
|
do_test_pending();
|
|
OS.File.getCurrentDirectory().then(
|
|
do_test_finished,
|
|
do_test_finished
|
|
);
|
|
}
|