Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test runs only with pattern: os == 'win'
- Manifest: toolkit/xre/test/win/mochitest/browser_env_path_long.toml
// Any copyright is dedicated to the Public Domain.
// Test that the browser starts even when PATH would expand to a detrimentally
// long value.
add_task(async function test() {
await BrowserTestUtils.withNewTab(
{ gBrowser, url: "about:blank" },
function () {
ok(
true,
"Browser should start even with potentially pathologically long PATH."
);
}
);
});