Skip to content
Unverified Commit 2317d7bb authored by Christoph Wurst's avatar Christoph Wurst
Browse files

Fix sinon.stub deprecation warnings



Calls to `sinon.stub(obj, 'meth', fn)` are deprecated and therefore
replaced by `sinon.stub(obj, 'meth).callsFake(fn)` as instructed by
the deprecation warning.

This makes the js unit testing output readable again.

Signed-off-by: default avatarChristoph Wurst <christoph@winzerhof-wurst.at>
parent 8a1d3c7e
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment