Official Nightwatch plugin for integration with the BrowserStack Local tunnel.
npm i @nightwatch/browserstack --save-dev
Update your Nightwatch configuration and add the plugin to the list:
module.exports = {
plugins: ['@nightwatch/browserstack'],
// browserstack plugin settings...
'@nightwatch/browserstack': {
browserstackLocal: true, // set true to manage browserstack local tunnel. Defaults to false.
browserstackLocalOptions: {
// other browserstack local options
}
},
// other nightwatch settings...
}
MIT