Skip to content

Commit dc3ee82

Browse files
committed
CI/CD Test with firefox
1 parent 562eb22 commit dc3ee82

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"build": "npm run clean && tsc",
88
"clean": "rimraf ./build ./package.zip",
9-
"test": "_mocha ./build/test/invalidLoginTest.js --timeout=999999 --exit",
9+
"test": "_mocha ./build/test/restrictedAccessTest.js --timeout=999999 --exit",
1010
"regression": "_mocha ./build/test/regression.js --timeout=999999 --exit"
1111

1212
},

‎test/restrictedAccessTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe('Test Case: Validate Successful Login', async function () {
1414

1515
before(async function () {
1616
// driver = await App.buildDriver();
17-
driver = await new Builder().forBrowser('chrome').build();
17+
driver = await new Builder().forBrowser('firefox').build();
1818
objApp = new App(driver); // Pass the driver instance here
1919
await driver.manage().window().maximize(); // Maximize the browser window
2020
});

0 commit comments

Comments
 (0)