Added mongo to the list of goodies

This commit is contained in:
Matt Styles
2013-05-14 23:39:54 +01:00
parent 48aa210dc3
commit 6790f69ece
2 changed files with 3 additions and 2 deletions

View File

@@ -17,7 +17,8 @@ angular.module( 'yoAngularExpressTestApp' )
$scope.awesomeServerThings = [
'Express',
'Hogan',
'Socket.io'
'Socket.io',
'MongoDB'
];
$scope.isCollapsed = true;

View File

@@ -21,6 +21,6 @@ describe( 'Controller: MainCtrl', function() {
} );
it( 'should attach a list of awesomeServerThings to the scope', function() {
expect( scope.awesomeServerThings.length ).toBe( 3 );
expect( scope.awesomeServerThings.length ).toBe( 4 );
} );
} );