You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the following pending spec define in a jasmine test.
describe("Pending specs", function (){
xit("can be declared 'xit'", function () {
expect(true).toBe(false);
});
it("can be declared with 'it' but without a function");
it("can be declared by calling 'pending' in the spec body", function () {
expect(true).toBe(false);
pending('this is why it is pending');
});
});
When written out by the karma-junit-reporter I get a skipped and failed result. This leads me to believe the test has been run, or given a result when it should have none.
I have the following pending spec define in a jasmine test.
When written out by the karma-junit-reporter I get a skipped and failed result. This leads me to believe the test has been run, or given a result when it should have none.
I have also reported this to karma-junit-reporter.
karma-runner/karma-junit-reporter#90
The text was updated successfully, but these errors were encountered: