bitcoin-atm

bitcoin atm for pyc inc.

git clone https://9o.is/git/bitcoin-atm.git

App.spec.js

(374B)


      1 describe("App", function() {
      2 	
      3 	var 
      4 	scope, 
      5 	WalletScannerCtrl;
      6 	
      7 	beforeEach(function() {
      8 		module("app");
      9 		
     10 		inject(function ($controller, $rootScope) {
     11 			scope = $rootScope.$new();
     12 		    
     13 			WalletScannerCtrl = 1;
     14 		});
     15 	});
     16 	
     17 	describe("WalletScannerCtrl", function() {		
     18 		it("should exist", function() {
     19 			expect(WalletScannerCtrl).toBeDefined();
     20 		});
     21 	});
     22 });