Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Commit 4b93419

Browse files
committed
Moves modules into folders and fixes e2e tests
1 parent 801d393 commit 4b93419

File tree

11 files changed

+7
-7
lines changed

11 files changed

+7
-7
lines changed

src/module.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
//TODO: use $window
88
.value("Firebase", exports.Firebase);
99

10-
angular.module("angularfire.utils", [])
11-
angular.module("angularfire.config", [])
10+
angular.module("angularfire.utils", []);
11+
angular.module("angularfire.config", []);
1212
angular.module("angularfire.auth", ["angularfire.utils"]);
1313
angular.module("angularfire.database", ["angularfire.utils"]);
1414
})(window);
File renamed without changes.

tests/protractor/chat/chat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var app = angular.module('chat', ['firebase']);
1+
var app = angular.module('chat', ['angularfire.database']);
22

33
app.controller('ChatCtrl', function Chat($scope, $firebaseObject, $firebaseArray) {
44
// Get a reference to the Firebase

tests/protractor/priority/priority.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var app = angular.module('priority', ['firebase']);
1+
var app = angular.module('priority', ['angularfire.database']);
22
app.controller('PriorityCtrl', function Chat($scope, $firebaseArray, $firebaseObject) {
33
// Get a reference to the Firebase
44
var rootRef = firebase.database().ref();

tests/protractor/tictactoe/tictactoe.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var app = angular.module('tictactoe', ['firebase']);
1+
var app = angular.module('tictactoe', ['angularfire.database']);
22
app.controller('TicTacToeCtrl', function Chat($scope, $firebaseObject) {
33
$scope.board = {};
44

0 commit comments

Comments
 (0)