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

Commit ddb7258

Browse files
committed
fix(tests): Use correct test database
1 parent f425523 commit ddb7258

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

tests/initialize.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ try {
66
// TODO: stop hard-coding this
77
var config = {
88
apiKey: "AIzaSyCcB9Ozrh1M-WzrwrSMB6t5y1flL8yXYmY",
9-
authDomain: "angularfire-dae2e.firebaseapp.com",
10-
databaseURL: "https://angularfire-dae2e.firebaseio.com",
11-
storageBucket: "angularfire-dae2e.appspot.com"
9+
authDomain: "oss-test.firebaseapp.com",
10+
databaseURL: "https://oss-test.firebaseio.com",
11+
storageBucket: "oss-test.appspot.com"
1212
};
1313
firebase.initializeApp(config);
1414
} catch (err) {

tests/protractor/upload/upload.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ describe('Upload App', function () {
6969
.then(function () {
7070
return el.getText();
7171
}).then(function (text) {
72-
var result = "https://firebasestorage.googleapis.com/v0/b/angularfire-dae2e.appspot.com/o/user%2F1.png";
72+
var result = "https://firebasestorage.googleapis.com/v0/b/oss-test.appspot.com/o/user%2F1.png";
7373
expect(text.slice(0, result.length)).toEqual(result);
7474
done();
7575
});

tests/unit/FirebaseStorage.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22
describe('$firebaseStorage', function () {
33
var $firebaseStorage;
4-
var URL = 'https://angularfire-dae2e.firebaseio.com';
4+
var URL = 'https://oss-test.firebaseio.com';
55

66
beforeEach(function () {
77
module('firebase.storage');

0 commit comments

Comments
 (0)