Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'win' && debug
- Manifest: testing/xpcshell/test/unit/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
/* import-globals-from ../../head.js */
function run_test() {
do_check_throws_nsIException(function () {
Services.env.QueryInterface(Ci.nsIFile);
}, "NS_NOINTERFACE");
}