Skip to content

Commit

Permalink
fix bad URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt307082 committed Aug 5, 2024
1 parent cc5a8cb commit e87d1bf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions var/www/html/tests/console.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ options.setBinaryPath('/opt/google/chrome/google-chrome');
// parsing command line arguments to retrieve the URL to test
const args = process.argv.slice(2);
const urlArg = args.find(arg => arg.startsWith('--url='));
//const URL = urlArg ? urlArg.split('=')[1] : null;
const URL = "http://192.168.7.144:30443"
const URL = urlArg ? urlArg.split('=')[1] : null;


describe('console service front-end tests', function(){
Expand Down

0 comments on commit e87d1bf

Please sign in to comment.