teaspoon-jasmine 2.4.1 → 2.9.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -35,6 +35,24 @@
35
35
  return new (Teaspoon.resolveClass("Runner"))();
36
36
  };
37
37
 
38
+ Teaspoon.setupErrorHandler = function() {
39
+ var originalOnError;
40
+ originalOnError = window.onerror;
41
+ return window.onerror = function(message) {
42
+ if (originalOnError && originalOnError.call) {
43
+ originalOnError.apply(null, arguments);
44
+ }
45
+ if (Teaspoon.started) {
46
+ return;
47
+ }
48
+ return Teaspoon.messages.push(JSON.stringify({
49
+ _teaspoon: true,
50
+ type: "exception",
51
+ message: message
52
+ }));
53
+ };
54
+ };
55
+
38
56
  Teaspoon.reload = function() {
39
57
  return window.location.reload();
40
58
  };
@@ -77,12 +95,12 @@
77
95
  };
78
96
 
79
97
  Teaspoon.log = function() {
80
- var e;
98
+ var e, error;
81
99
  Teaspoon.messages.push(arguments[0]);
82
100
  try {
83
101
  return typeof console !== "undefined" && console !== null ? typeof console.log === "function" ? console.log.apply(console, arguments) : void 0 : void 0;
84
- } catch (_error) {
85
- e = _error;
102
+ } catch (error) {
103
+ e = error;
86
104
  throw new Error("Unable to use console.log for logging");
87
105
  }
88
106
  };
@@ -111,7 +129,7 @@
111
129
 
112
130
  Teaspoon.checkNamespace = function(root, klass) {
113
131
  var i, j, len, namespace, namespaces, scope;
114
- namespaces = klass.split('.');
132
+ namespaces = klass.split(".");
115
133
  scope = root;
116
134
  for (i = j = 0, len = namespaces.length; j < len; i = ++j) {
117
135
  namespace = namespaces[i];
@@ -126,6 +144,8 @@
126
144
 
127
145
  })();
128
146
 
147
+ Teaspoon.setupErrorHandler();
148
+
129
149
  }).call(this);
130
150
  (function() {
131
151
  Teaspoon.Mixins || (Teaspoon.Mixins = {});
@@ -383,18 +403,18 @@
383
403
  };
384
404
 
385
405
  xhrRequest = function(url, callback) {
386
- var e;
406
+ var e, error, error1;
387
407
  if (window.XMLHttpRequest) {
388
408
  xhr = new XMLHttpRequest();
389
409
  } else if (window.ActiveXObject) {
390
410
  try {
391
411
  xhr = new ActiveXObject("Msxml2.XMLHTTP");
392
- } catch (_error) {
393
- e = _error;
412
+ } catch (error) {
413
+ e = error;
394
414
  try {
395
415
  xhr = new ActiveXObject("Microsoft.XMLHTTP");
396
- } catch (_error) {
397
- e = _error;
416
+ } catch (error1) {
417
+ e = error1;
398
418
  }
399
419
  }
400
420
  }
@@ -423,18 +443,18 @@
423
443
  }
424
444
  xhr = null;
425
445
  xhrRequest = function(url, payload, callback) {
426
- var e;
446
+ var e, error, error1;
427
447
  if (window.XMLHttpRequest) {
428
448
  xhr = new XMLHttpRequest();
429
449
  } else if (window.ActiveXObject) {
430
450
  try {
431
451
  xhr = new ActiveXObject("Msxml2.XMLHTTP");
432
- } catch (_error) {
433
- e = _error;
452
+ } catch (error) {
453
+ e = error;
434
454
  try {
435
455
  xhr = new ActiveXObject("Microsoft.XMLHTTP");
436
- } catch (_error) {
437
- e = _error;
456
+ } catch (error1) {
457
+ e = error1;
438
458
  }
439
459
  }
440
460
  }
@@ -452,8 +472,8 @@
452
472
  if (xhr.readyState !== 4) {
453
473
  return;
454
474
  }
455
- if (xhr.status !== 200) {
456
- throw "Unable to call hook \"" + url + "\".";
475
+ if (xhr.status !== 200 && xhr.status !== 500) {
476
+ throw JSON.parse(xhr.response).err;
457
477
  }
458
478
  });
459
479
  };
@@ -898,7 +918,7 @@
898
918
  };
899
919
 
900
920
  RadialProgressView.prototype.appendTo = function() {
901
- var canvas, e;
921
+ var canvas, e, error;
902
922
  RadialProgressView.__super__.appendTo.apply(this, arguments);
903
923
  this.size = 80;
904
924
  try {
@@ -907,8 +927,8 @@
907
927
  this.ctx = canvas.getContext("2d");
908
928
  this.ctx.strokeStyle = "#fff";
909
929
  return this.ctx.lineWidth = 1.5;
910
- } catch (_error) {
911
- e = _error;
930
+ } catch (error) {
931
+ e = error;
912
932
  }
913
933
  };
914
934
 
@@ -35,6 +35,24 @@
35
35
  return new (Teaspoon.resolveClass("Runner"))();
36
36
  };
37
37
 
38
+ Teaspoon.setupErrorHandler = function() {
39
+ var originalOnError;
40
+ originalOnError = window.onerror;
41
+ return window.onerror = function(message) {
42
+ if (originalOnError && originalOnError.call) {
43
+ originalOnError.apply(null, arguments);
44
+ }
45
+ if (Teaspoon.started) {
46
+ return;
47
+ }
48
+ return Teaspoon.messages.push(JSON.stringify({
49
+ _teaspoon: true,
50
+ type: "exception",
51
+ message: message
52
+ }));
53
+ };
54
+ };
55
+
38
56
  Teaspoon.reload = function() {
39
57
  return window.location.reload();
40
58
  };
@@ -77,12 +95,12 @@
77
95
  };
78
96
 
79
97
  Teaspoon.log = function() {
80
- var e;
98
+ var e, error;
81
99
  Teaspoon.messages.push(arguments[0]);
82
100
  try {
83
101
  return typeof console !== "undefined" && console !== null ? typeof console.log === "function" ? console.log.apply(console, arguments) : void 0 : void 0;
84
- } catch (_error) {
85
- e = _error;
102
+ } catch (error) {
103
+ e = error;
86
104
  throw new Error("Unable to use console.log for logging");
87
105
  }
88
106
  };
@@ -111,7 +129,7 @@
111
129
 
112
130
  Teaspoon.checkNamespace = function(root, klass) {
113
131
  var i, j, len, namespace, namespaces, scope;
114
- namespaces = klass.split('.');
132
+ namespaces = klass.split(".");
115
133
  scope = root;
116
134
  for (i = j = 0, len = namespaces.length; j < len; i = ++j) {
117
135
  namespace = namespaces[i];
@@ -126,6 +144,8 @@
126
144
 
127
145
  })();
128
146
 
147
+ Teaspoon.setupErrorHandler();
148
+
129
149
  }).call(this);
130
150
  (function() {
131
151
  Teaspoon.Mixins || (Teaspoon.Mixins = {});
@@ -383,18 +403,18 @@
383
403
  };
384
404
 
385
405
  xhrRequest = function(url, callback) {
386
- var e;
406
+ var e, error, error1;
387
407
  if (window.XMLHttpRequest) {
388
408
  xhr = new XMLHttpRequest();
389
409
  } else if (window.ActiveXObject) {
390
410
  try {
391
411
  xhr = new ActiveXObject("Msxml2.XMLHTTP");
392
- } catch (_error) {
393
- e = _error;
412
+ } catch (error) {
413
+ e = error;
394
414
  try {
395
415
  xhr = new ActiveXObject("Microsoft.XMLHTTP");
396
- } catch (_error) {
397
- e = _error;
416
+ } catch (error1) {
417
+ e = error1;
398
418
  }
399
419
  }
400
420
  }
@@ -423,18 +443,18 @@
423
443
  }
424
444
  xhr = null;
425
445
  xhrRequest = function(url, payload, callback) {
426
- var e;
446
+ var e, error, error1;
427
447
  if (window.XMLHttpRequest) {
428
448
  xhr = new XMLHttpRequest();
429
449
  } else if (window.ActiveXObject) {
430
450
  try {
431
451
  xhr = new ActiveXObject("Msxml2.XMLHTTP");
432
- } catch (_error) {
433
- e = _error;
452
+ } catch (error) {
453
+ e = error;
434
454
  try {
435
455
  xhr = new ActiveXObject("Microsoft.XMLHTTP");
436
- } catch (_error) {
437
- e = _error;
456
+ } catch (error1) {
457
+ e = error1;
438
458
  }
439
459
  }
440
460
  }
@@ -453,7 +473,7 @@
453
473
  return;
454
474
  }
455
475
  if (xhr.status !== 200) {
456
- throw "Unable to call hook \"" + url + "\".";
476
+ throw JSON.parse(xhr.response).err;
457
477
  }
458
478
  });
459
479
  };
@@ -898,7 +918,7 @@
898
918
  };
899
919
 
900
920
  RadialProgressView.prototype.appendTo = function() {
901
- var canvas, e;
921
+ var canvas, e, error;
902
922
  RadialProgressView.__super__.appendTo.apply(this, arguments);
903
923
  this.size = 80;
904
924
  try {
@@ -907,8 +927,8 @@
907
927
  this.ctx = canvas.getContext("2d");
908
928
  this.ctx.strokeStyle = "#fff";
909
929
  return this.ctx.lineWidth = 1.5;
910
- } catch (_error) {
911
- e = _error;
930
+ } catch (error) {
931
+ e = error;
912
932
  }
913
933
  };
914
934
 
@@ -11,7 +11,7 @@ module Teaspoon
11
11
  dependencies: ["teaspoon-jasmine1.js"],
12
12
  dev_deps: ["teaspoon/jasmine1.js"]
13
13
 
14
- versions = ["2.0.3", "2.1.3", "2.2.0", "2.2.1", "2.3.4", "2.4.1"]
14
+ versions = ["2.0.3", "2.1.3", "2.2.0", "2.2.1", "2.3.4", "2.4.1", "2.9.1"]
15
15
 
16
16
  versions.each do |version|
17
17
  register_version version, "jasmine/#{version}.js",
@@ -21,7 +21,7 @@
21
21
  # setTimeout(Teaspoon.execute, 1000)
22
22
  #
23
23
  # Matching files
24
- # By default Teaspoon will look for files that match _spec.{js,js.coffee,.coffee}. Add a filename_spec.js file in your
24
+ # By default Teaspoon will look for files that match _spec.{js,js.coffee,coffee}. Add a filename_spec.js file in your
25
25
  # spec path and it'll be included in the default suite automatically. If you want to customize suites, check out the
26
26
  # configuration in teaspoon_env.rb
27
27
  #
@@ -29,4 +29,4 @@
29
29
  # If you'd rather require your spec files manually (to control order for instance) you can disable the suite matcher in
30
30
  # the configuration and use this file as a manifest.
31
31
  #
32
- # For more information: http://github.com/modeset/teaspoon
32
+ # For more information: http://github.com/jejacks0n/teaspoon
@@ -21,7 +21,7 @@
21
21
  // setTimeout(Teaspoon.execute, 1000)
22
22
  //
23
23
  // Matching files
24
- // By default Teaspoon will look for files that match _spec.{js,js.coffee,.coffee}. Add a filename_spec.js file in your
24
+ // By default Teaspoon will look for files that match _spec.{js,js.coffee,coffee}. Add a filename_spec.js file in your
25
25
  // spec path and it'll be included in the default suite automatically. If you want to customize suites, check out the
26
26
  // configuration in teaspoon_env.rb
27
27
  //
@@ -29,4 +29,4 @@
29
29
  // If you'd rather require your spec files manually (to control order for instance) you can disable the suite matcher in
30
30
  // the configuration and use this file as a manifest.
31
31
  //
32
- // For more information: http://github.com/modeset/teaspoon
32
+ // For more information: http://github.com/jejacks0n/teaspoon
@@ -1,5 +1,5 @@
1
1
  module Teaspoon
2
2
  module Jasmine
3
- VERSION = "2.4.1"
3
+ VERSION = "2.9.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teaspoon-jasmine
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.1
4
+ version: 2.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - jejacks0n
@@ -28,7 +28,7 @@ dependencies:
28
28
  description: Run Jasmine specs in the browser or headless with PhantomJS, Selenium
29
29
  Webdriver, or Capybara Webkit
30
30
  email:
31
- - info@modeset.com
31
+ - jejacks0n@gmail.com
32
32
  executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
@@ -41,6 +41,7 @@ files:
41
41
  - lib/teaspoon/jasmine/assets/jasmine/2.2.1.js
42
42
  - lib/teaspoon/jasmine/assets/jasmine/2.3.4.js
43
43
  - lib/teaspoon/jasmine/assets/jasmine/2.4.1.js
44
+ - lib/teaspoon/jasmine/assets/jasmine/2.9.1.js
44
45
  - lib/teaspoon/jasmine/assets/jasmine/MIT.LICENSE
45
46
  - lib/teaspoon/jasmine/assets/support/jasmine-jquery-1.7.0.js
46
47
  - lib/teaspoon/jasmine/assets/support/jasmine-jquery-2.0.0.js
@@ -67,7 +68,7 @@ files:
67
68
  - lib/teaspoon/jasmine/templates/spec_helper.coffee
68
69
  - lib/teaspoon/jasmine/templates/spec_helper.js
69
70
  - lib/teaspoon/jasmine/version.rb
70
- homepage: https://github.com/modeset/teaspoon
71
+ homepage: https://github.com/jejacks0n/teaspoon
71
72
  licenses:
72
73
  - MIT
73
74
  metadata: {}