Fix a broken test

turns out that you could call defer.resolve on q defers as an unbound function,
whereas that doesn't work with bluebird promises.
This commit is contained in:
Richard van der Hoff 2017-07-13 00:56:13 +01:00
parent 1d2d086a58
commit 69eb1a49d4

View File

@ -139,7 +139,7 @@ describe('loading:', function () {
realQueryParams={params}
startingFragmentQueryParams={fragParts.params}
enableGuest={true}
onTokenLoginCompleted={tokenLoginCompleteDefer.resolve}
onTokenLoginCompleted={() => tokenLoginCompleteDefer.resolve()}
initialScreenAfterLogin={getScreenFromLocation(windowLocation)}
makeRegistrationUrl={() => {throw new Error('Not implemented');}}
/>, parentDiv