-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Empty it
throws an error
#27
Comments
The error appears to be basically that our validation code is wrong. We see |
This also impacts tests marked pending with the Jasmine2 pending() function: Spec with
|
I have a fix for the empty Getting But because we're running everything async, by the time we get the I'm looking into whether we can force Jasmine to mark the spec as pending in some other way. |
In the current Jasmine version, there's no way to mark a spec as pending if it's already running asynchronously, which is how jasminewd always runs specs (inside their own |
Made pending its own issue - #32 |
Closed with #31 |
See angular/protractor#1852
Reproduced with the following commands in a node shell:
Where
~/sandbox/spec.js
is as follows:This produces the message:
Removing
require('jasminewd2');
gets rid of the errorThe text was updated successfully, but these errors were encountered: