Merge pull request #2440 from kazuhitoyokoi/master-supportbrowserstack

Support BrowserStack in UI testing
This commit is contained in:
Nick O'Leary
2020-02-05 15:40:03 +00:00
committed by GitHub
4 changed files with 101 additions and 23 deletions

View File

@@ -26,6 +26,10 @@ module.exports = function(grunt) {
nodemonArgs.push(flowFile);
}
var browserstack = grunt.option('browserstack');
if (browserstack) {
process.env.BROWSERSTACK = true;
}
var nonHeadless = grunt.option('non-headless');
if (nonHeadless) {
process.env.NODE_RED_NON_HEADLESS = true;