X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/src/core/test/unit/spec/lang/Error.js diff --git a/src/core/test/unit/spec/lang/Error.js b/src/core/test/unit/spec/lang/Error.js index 47578a3d..3c14c6d4 100644 --- a/src/core/test/unit/spec/lang/Error.js +++ b/src/core/test/unit/spec/lang/Error.js @@ -1,6 +1,5 @@ describe("Ext.Error", function() { - var global, - consoleWarningMsg = 'An uncaught error was raised with the following data:'; + var global; beforeEach(function() { global = Ext.global; @@ -11,6 +10,9 @@ describe("Ext.Error", function() { dir: function(s) { return s; }, + error: function(s) { + return s; + }, warn: function(s) { return s; } @@ -35,13 +37,13 @@ describe("Ext.Error", function() { } }); - it("should log a warning to the console", function() { - spyOn(Ext.global.console, 'warn'); + it("should log an error to the console", function() { + spyOn(Ext.global.console, 'error'); try { Ext.Error.raise('foo'); } catch (err) {} - expect(Ext.global.console.warn).toHaveBeenCalledWith(consoleWarningMsg); + expect(Ext.global.console.error).toHaveBeenCalledWith('foo'); }); it("should log the error object to the console", function() { @@ -99,12 +101,12 @@ describe("Ext.Error", function() { }); it("should log a warning to the console", function() { - spyOn(Ext.global.console, 'warn'); + spyOn(Ext.global.console, 'error'); try { Ext.Error.raise({msg: 'foo'}); } catch (err) {} - expect(Ext.global.console.warn).toHaveBeenCalledWith(consoleWarningMsg); + expect(Ext.global.console.error).toHaveBeenCalledWith('foo'); }); it("should log the error object to the console", function() {