This error occurs when passing an object instead of a string to Jasmine's describe()
:
# Bad
describe(HoverClass, function() { ... })
# Correct
describe('HoverClass', function() { ... })
Posted by Dominik Schöler to makandra dev (2020-09-08 08:28)