Fixed isPendingSpecException test title

This commit is contained in:
Mateusz Derks
2014-10-17 15:30:26 +02:00
parent b67a19507f
commit 3b557f85c7

View File

@@ -14,7 +14,7 @@ describe("Spec", function() {
expect(j$.Spec.isPendingSpecException(fakeError)).toBe(true);
});
it("#isPendingSpecException returns true for a pending spec exception", function() {
it("#isPendingSpecException returns false for not a pending spec exception", function() {
var e = new Error("foo");
expect(j$.Spec.isPendingSpecException(e)).toBe(false);