Skip to content

Commit

Permalink
Integration tests now depend on base project
Browse files Browse the repository at this point in the history
  • Loading branch information
fadc80 committed Nov 8, 2020
1 parent 3a705d7 commit 9ce1615
Show file tree
Hide file tree
Showing 11 changed files with 47 additions and 431 deletions.
13 changes: 11 additions & 2 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"imageSize": 100,
"commit": false,
"contributors": [
{
{
"login": "fadc80",
"name": "Fernando Costa",
"avatar_url": "https://avatars3.githubusercontent.com/u/12335761?v=4",
Expand All @@ -15,7 +15,7 @@
"bug",
"doc"
]
},
},
{
"login": "sohansoni",
"name": "Sohan Soni",
Expand Down Expand Up @@ -79,6 +79,15 @@
"contributions": [
"code"
]
},
{
"login": "Fadelis",
"name": "Paulius Paplauskas",
"avatar_url": "https://avatars3.githubusercontent.com/u/6364106?v=4",
"profile": "https://github.com/Fadelis",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 6,
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<tr>
<td align="center"><a href="http://www.blogging-it.com"><img src="https://avatars2.githubusercontent.com/u/7409025?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Esche</b></sub></a><br /><a href="https://github.com/fadc80/karma-sonarqube-reporter/issues?q=author%3Amesche" title="Bug reports">🐛</a></td>
<td align="center"><a href="https://github.com/jbardon"><img src="https://avatars2.githubusercontent.com/u/9324783?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jérémy Bardon</b></sub></a><br /><a href="https://github.com/fadc80/karma-sonarqube-reporter/commits?author=jbardon" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/Fadelis"><img src="https://avatars3.githubusercontent.com/u/6364106?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Paulius Paplauskas</b></sub></a><br /><a href="https://github.com/fadc80/karma-sonarqube-reporter/commits?author=Fadelis" title="Code">💻</a></td>
</tr>
</table>

Expand Down
198 changes: 0 additions & 198 deletions it/angular-jasmine/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion it/angular-jasmine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-sonarqube-reporter": "^1.3.0",
"protractor": "~7.0.0",
"ts-node": "~7.0.0",
"tslint": "~6.1.0",
Expand Down
6 changes: 6 additions & 0 deletions it/angular-jasmine/src/app/app.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,10 @@ describe('AppComponent', () => {
const compiled = fixture.debugElement.nativeElement;
expect(compiled.querySelector('h1').textContent).toContain('Welcome to app1!');
});

['a', 'b', 'c'].forEach((item: any) => {
it(`basic_dynamic_testcase_${item}`, () => {
expect(true).toBe(true);
});
});
});
Loading

0 comments on commit 9ce1615

Please sign in to comment.