Skip to content
This repository has been archived by the owner on Mar 29, 2022. It is now read-only.

Commit

Permalink
Break lines at < 80 columns (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
p-salido authored and urish committed Oct 4, 2017
1 parent 729e00d commit 349fa06
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/server.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ var _ = require('lodash');
// it is initialized in `beforeEach()`.
var authToken = null;

// Firebase has strict requirements about the hostname format. So we provide a dummy
// hostname and then change the URL to localhost inside the faye-websocket's Client
// constructor.
// Firebase has strict requirements about the hostname format. So we provide
// a dummy hostname and then change the URL to localhost inside the
// faye-websocket's Client constructor.
var firebase = proxyquire('firebase', {
'faye-websocket': {
Client: function (url) {
Expand All @@ -31,8 +31,8 @@ var firebase = proxyquire('firebase', {
}
});

// Override Firebase client authentication mechanism. This allows us to set custom auth tokens during
// tests, as well as authenticate anonymously.
// Override Firebase client authentication mechanism. This allows us to set
// custom auth tokens during tests, as well as authenticate anonymously.
firebase.INTERNAL.factories.auth = function(app, extendApp) {
var _listeners = [];
var token = authToken;
Expand Down

0 comments on commit 349fa06

Please sign in to comment.