Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue#49 Add unit tests to test the steam REST API defined functions. #50

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c808fac
Add javascript dependencies in the bower.json
ajinkya007 Jul 2, 2016
307c5c8
Add the node dependencies in the package.json
ajinkya007 Jul 2, 2016
04fbc3d
Add the angular-mocks.js for running the e2e tests.
ajinkya007 Jul 2, 2016
b9ec6a3
Add support for running tests from npm test command.
ajinkya007 Jul 7, 2016
a8f33b4
Remove the files from test/unit as they are unrelated.
ajinkya007 Jul 7, 2016
3c410dc
Remove angular-seed files from the project directory.
ajinkya007 Jul 7, 2016
f9b9609
Remove the files related to the Karma test runner.
ajinkya007 Jul 7, 2016
bb55179
Rename the app from Techgrind to sTeam-REST
ajinkya007 Jul 7, 2016
dc3bc12
Add the NavCtrl in the app.coffee
ajinkya007 Jul 7, 2016
f08ac36
Remove the redundant scripts from the scripts directory
ajinkya007 Jul 7, 2016
074fcd1
Add travis.yml
ajinkya007 Jul 7, 2016
e832314
Add build badge for travis ci.
ajinkya007 Jul 7, 2016
b6d9f2d
Add the home.html page for the app.
ajinkya007 Jul 7, 2016
7055905
Add navigation bar to the app.
ajinkya007 Jul 7, 2016
b066738
Add support for the angular ui-view
ajinkya007 Jul 7, 2016
3a359d7
Modify the footer.html
ajinkya007 Jul 7, 2016
2ab8dee
Add the about.html for more information regarding the app
ajinkya007 Jul 7, 2016
a2d4caf
Change the domain name.
ajinkya007 Jul 7, 2016
56bd8c8
Modify the e2e tests.
ajinkya007 Jul 10, 2016
5e3c558
Add test for login.
ajinkya007 Jul 11, 2016
1b3126b
Add tests for accessing the documents, container and groups.
ajinkya007 Jul 12, 2016
e0b9aad
Remove the installed libraries.
ajinkya007 Jul 14, 2016
e03d381
Add bower dependencies for angular mock,scenario and local storage.
ajinkya007 Jul 14, 2016
7fffcb0
Add jasmine test runner for unit tests.
ajinkya007 Jul 14, 2016
6d1030d
Change the jasmine directory.
ajinkya007 Jul 14, 2016
04dcccf
Resolve karma-jasmine unmet dependencies.
ajinkya007 Jul 14, 2016
e960754
Add karma configuration file.
ajinkya007 Jul 14, 2016
f21669c
Add basic unit test.
ajinkya007 Jul 14, 2016
f7c2b26
Add unit test to test the steam-service.
ajinkya007 Jul 14, 2016
a43adf2
Add the sTeam REST API Function definition exists unit tests.
ajinkya007 Jul 20, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ node_modules/
bower_components/
app/lib/components/
*.swp
*.*~
13 changes: 1 addition & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
language: node_js
node_js:
- 0.8

before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install --quiet -g karma
- ./scripts/web-server.js > /dev/null &
- sleep 1 # give server time to start

script:
- karma start config/karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=Firefox
- karma start config/karma-e2e.conf.js --reporters=dots --browsers=Firefox
- "node"
4 changes: 0 additions & 4 deletions app/css/calendar.css

This file was deleted.

13 changes: 6 additions & 7 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,18 @@
<script src="lib/components/angular-ui-router/release/angular-ui-router.min.js"></script>
<script src="lib/components/angular-bootstrap/ui-bootstrap.min.js "></script>
<script src="lib/components/angular-bootstrap/ui-bootstrap-tpls.min.js "></script>
<script src="lib/angular/localStorageModule.js"></script>
<script src="lib/components/angular-local-storage/dist/angular-local-storage.js"></script>
<link href="lib/components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"></link>
<script src="js/app.js"></script>
<script src="js/steam.js"></script>
<script src="js/main.js"></script>
<script src="js/register.js"></script>
<link href="lib/components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"></link>
</head>

<body>
<div class="container">
<header ng-include="'partials/nav.html'"></header>
<div ui-view></div>
<footer ng-include="'partials/footer.html'"></footer>
<div>
<header ng-include="'partials/nav.html'"></header>
<div ui-view></div>
<br />
<footer ng-include="'partials/footer.html'"></footer>
</body>
</html>
11 changes: 0 additions & 11 deletions app/js/seed-app.js

This file was deleted.

11 changes: 0 additions & 11 deletions app/js/seed-controllers.js

This file was deleted.

11 changes: 0 additions & 11 deletions app/js/seed-directives.js

This file was deleted.

10 changes: 0 additions & 10 deletions app/js/seed-filters.js

This file was deleted.

9 changes: 0 additions & 9 deletions app/js/seed-services.js

This file was deleted.

239 changes: 0 additions & 239 deletions app/lib/angular/localStorageModule.js

This file was deleted.

Loading