Skip to content

Commit

Permalink
changed to automate as base class
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohannagariya1 committed Jan 6, 2025
1 parent c4ad18c commit f5c7b8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const BrowserStack = require('./browserstack.js');
const Automate = require('./automate.js');
const stripAnsi = require('strip-ansi');
class AutomateTurboScale extends BrowserStack {
class AutomateTurboScale extends Automate {
get productNamespace() {
return 'grid';
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class Browserstack extends AppiumBaseServer {
await this.sendReasonToBrowserstack(!!err, reason);
// eslint-disable-next-line no-console
console.log('\n ' + 'See more info, video, & screenshots on Browserstack:\n' +
' ' + Logger.colors.light_cyan(`${this.buildUrl}/builds/${this.buildId}/sessions/${this.sessionId}`));
' ' + Logger.colors.light_cyan(`${this.buildUrl}/builds/${this.buildId}/sessions/${this.sessionId}`));
}

if (this.uploadedAppUrl) {
Expand Down

0 comments on commit f5c7b8d

Please sign in to comment.