mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-20 07:25:15 +02:00
Fallback for browsers that do not support localStorage. Fixes #591
This commit is contained in:
@@ -2,7 +2,8 @@ describe('iD.Connection', function () {
|
||||
var c;
|
||||
|
||||
beforeEach(function () {
|
||||
c = new iD.Connection();
|
||||
context = iD();
|
||||
c = new iD.Connection(context);
|
||||
});
|
||||
|
||||
it('is instantiated', function () {
|
||||
|
||||
+2
-1
@@ -2,7 +2,8 @@ describe('iD.OAuth', function() {
|
||||
var o;
|
||||
|
||||
beforeEach(function() {
|
||||
o = iD.OAuth();
|
||||
context = iD();
|
||||
o = iD.OAuth(context);
|
||||
});
|
||||
|
||||
describe('#logout', function() {
|
||||
|
||||
Reference in New Issue
Block a user