Skip to content
Snippets Groups Projects
Verified Commit 14d9ea36 authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3504204 by murz: Nightwatch command drupalInstall doesn't set the...

Issue #3504204 by murz: Nightwatch command drupalInstall doesn't set the user_agent environment variable with the simpletest site instance
parent a0a7640c
No related branches found
No related tags found
No related merge requests found
Pipeline #463729 failed
......@@ -50,6 +50,9 @@ exports.command = function drupalInstall(
value: encodeURIComponent(installData.user_agent),
path: url.pathname,
});
// Set the HTTP_USER_AGENT environment variable to detect the test
// environment in the command line.
process.env.HTTP_USER_AGENT = installData.user_agent;
} catch (error) {
this.assert.fail(error);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment