added karma test framework and network skeleton

This commit is contained in:
Manuel Araoz 2014-03-21 18:45:59 -03:00
commit 6f1b60e562
8 changed files with 144 additions and 2 deletions

7
js/network.js Normal file
View file

@ -0,0 +1,7 @@
var cosign = angular.module('cosign', []);
cosign.service('network', function() {
this.f = function() {
return 2;
};
});