Skip to content

Commit 66d48ad

Browse files
authored
Merge pull request #6 from mukesh-lt/MR-MLQA-370
[MLQA-370]: Revert packages to support code
2 parents 33c07b0 + 954c584 commit 66d48ad

3 files changed

Lines changed: 37 additions & 25 deletions

File tree

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,7 @@ typings/
158158

159159
# End of https://www.gitignore.io/api/macos,visualstudiocode,angular,node
160160

161-
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
161+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
162+
163+
/LT
164+
/LT_*

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,20 +50,27 @@ To install node.js with homebrew use the below command.
5050

5151
`$ npm install -g @angular/cli`
5252

53+
5354
**2. LambdaTest Authentication Credentials**
5455

5556
Be aware of your LambdaTest authentication credentials i.e. your LambdaTest username, access key and HubURL. You need to set them up as your environment variables. You can retrieve them from your [LambdaTest automation dashboard](https://automation.lambdatest.com/?utm_source=github&utm_medium=repo&utm_campaign=angular-karma-sample) by clicking on the key icon near the help button.
5657

58+
```
59+
Start tunnel with command from the configure tunnel in your dashboard
60+
this tunnel name will be needed to run the tests
61+
```
5762
* For Windows user:
5863
```bash
5964
set LT_USERNAME=”YOUR_USERNAME”
6065
set LT_ACCESS_KEY=”YOUR ACCESS KEY”
66+
set LT_TUNNEL=”TUNNEL NAME”
6167
```
6268

6369
* For macOS/Linux user:
6470
```bash
6571
export LT_USERNAME=”YOUR_USERNAME”
6672
export LT_ACCESS_KEY=”YOUR ACCESS KEY”
73+
export LT_TUNNEL=”TUNNEL NAME”
6774
```
6875

6976
### Setting Up

package.json

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -11,43 +11,45 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/animations": "^15.0.1",
15-
"@angular/common": "^15.0.1",
16-
"@angular/compiler": "^15.0.1",
17-
"@angular/core": "^15.0.1",
18-
"@angular/forms": "^15.0.1",
19-
"@angular/platform-browser": "^15.0.1",
20-
"@angular/platform-browser-dynamic": "^15.0.1",
21-
"@angular/router": "^15.0.1",
14+
"@angular/animations": "~7.2.0",
15+
"@angular/common": "~7.2.0",
16+
"@angular/compiler": "~7.2.0",
17+
"@angular/core": "~7.2.0",
18+
"@angular/forms": "~7.2.0",
19+
"@angular/platform-browser": "~7.2.0",
20+
"@angular/platform-browser-dynamic": "~7.2.0",
21+
"@angular/router": "~7.2.0",
2222
"core-js": "^2.5.4",
2323
"jasmine": "^3.3.1",
2424
"karma-requirejs": "^1.1.0",
2525
"requirejs": "^2.3.6",
26-
"rxjs": "^6.3.0",
26+
"rxjs": "~6.3.3",
2727
"tslib": "^1.9.0",
28-
"zone.js": "^0.12.0"
28+
"zone.js": "~0.8.26"
2929
},
3030
"devDependencies": {
31-
"@angular-devkit/build-angular": "^15.0.1",
32-
"@angular/cli": "^15.0.1",
33-
"@angular/compiler-cli": "^15.0.1",
34-
"@angular/language-service": "^7.2.0",
35-
"@types/jasmine": "^2.8.8",
36-
"@types/jasminewd2": "^2.0.3",
37-
"@types/node": "^8.9.4",
31+
"@angular-devkit/build-angular": "^0.13.9",
32+
"@angular/cli": "~7.3.2",
33+
"@angular/compiler-cli": "^7.2.15",
34+
"@angular/language-service": "~7.2.0",
35+
"@types/jasmine": "~2.8.8",
36+
"@types/jasminewd2": "~2.0.3",
37+
"@types/node": "~8.9.4",
38+
"codelyzer": "~4.5.0",
3839
"jasmine-core": "^2.99.1",
39-
"jasmine-spec-reporter": "^4.2.1",
40-
"karma": "^6.4.1",
40+
"jasmine-spec-reporter": "~4.2.1",
41+
"karma": "^4.1.0",
4142
"karma-chrome-launcher": "^2.2.0",
4243
"karma-coverage-istanbul-reporter": "^2.0.5",
4344
"karma-jasmine": "^1.1.2",
4445
"karma-jasmine-html-reporter": "^0.2.2",
4546
"karma-mocha-reporter": "^0.3.1",
4647
"karma-selenium-grid-launcher": "^0.1.2",
4748
"karma-webdriver-launcher": "^1.0.5",
48-
"protractor": "^7.0.0",
49-
"selenium-webdriver": "^4.6.1",
50-
"ts-node": "^7.0.0",
51-
"typescript": "^4.8.3"
49+
"protractor": "~5.4.0",
50+
"selenium-webdriver": "^3.6.0",
51+
"ts-node": "~7.0.0",
52+
"tslint": "~5.11.0",
53+
"typescript": "~3.2.2"
5254
}
53-
}
55+
}

0 commit comments

Comments
 (0)