Renamed failFast and oneFailurePerSpec config props to stopOnSpecFailure and stopSpecOnExpectationFailure
The new names are more self-explanatory and consistent with jasmine-npm. The old names are deprecated but still work. [#178682783]
This commit is contained in:
@@ -663,7 +663,7 @@ describe('HtmlReporter', function() {
|
||||
}
|
||||
});
|
||||
|
||||
env.configure({ failFast: true });
|
||||
env.configure({ stopOnSpecFailure: true });
|
||||
|
||||
reporter.initialize();
|
||||
reporter.jasmineDone({});
|
||||
@@ -717,7 +717,7 @@ describe('HtmlReporter', function() {
|
||||
}
|
||||
});
|
||||
|
||||
env.configure({ failFast: true });
|
||||
env.configure({ stopOnSpecFailure: true });
|
||||
|
||||
reporter.initialize();
|
||||
reporter.jasmineDone({});
|
||||
@@ -769,7 +769,7 @@ describe('HtmlReporter', function() {
|
||||
}
|
||||
});
|
||||
|
||||
env.configure({ oneFailurePerSpec: true });
|
||||
env.configure({ stopSpecOnExpectationFailure: true });
|
||||
|
||||
reporter.initialize();
|
||||
reporter.jasmineDone({});
|
||||
@@ -823,7 +823,7 @@ describe('HtmlReporter', function() {
|
||||
}
|
||||
});
|
||||
|
||||
env.configure({ oneFailurePerSpec: true });
|
||||
env.configure({ stopSpecOnExpectationFailure: true });
|
||||
|
||||
reporter.initialize();
|
||||
reporter.jasmineDone({});
|
||||
|
||||
Reference in New Issue
Block a user