mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-08 22:37:20 +08:00
fix(ngScenario): fix error message description
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user