mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
fix(ngScenario): fix error message description
This commit is contained in:
parent
6c59e77008
commit
f8f8f754b0
1 changed files with 5 additions and 4 deletions
|
|
@ -74,16 +74,17 @@ angular.scenario.dsl = angular.scenario.dsl || function(name, fn) {
|
|||
*/
|
||||
angular.scenario.matcher = angular.scenario.matcher || function(name, fn) {
|
||||
angular.scenario.matcher[name] = function(expected) {
|
||||
var prefix = 'expect ' + this.future.name + ' ',
|
||||
not = this.inverse && 'not ';
|
||||
var description = this.future.name +
|
||||
(this.inverse ? ' not ' : ' ') + name +
|
||||
' ' + angular.toJson(expected);
|
||||
var self = this;
|
||||
this.addFuture(prefix + not + name + ' ' + angular.toJson(expected),
|
||||
this.addFuture('expect ' + description,
|
||||
function(done) {
|
||||
var error;
|
||||
self.actual = self.future.value;
|
||||
if ((self.inverse && fn.call(self, expected)) ||
|
||||
(!self.inverse && !fn.call(self, expected))) {
|
||||
error = 'expected ' + not + name + ' ' + angular.toJson(expected) +
|
||||
error = 'expected ' + description +
|
||||
' but was ' + angular.toJson(self.actual);
|
||||
}
|
||||
done(error);
|
||||
|
|
|
|||
Loading…
Reference in a new issue