1
0
Fork 0
firefox/toolkit/mozapps/extensions/test/xpcshell/test_harness.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

13 lines
357 B
JavaScript

"use strict";
// Test that the test harness is sane.
// Test that the temporary directory is actually overridden in the
// directory service.
add_task(async function test_TmpD_override() {
equal(
FileUtils.getDir("TmpD", []).path,
AddonTestUtils.tempDir.path,
"Should get the correct temporary directory from the directory service"
);
});