From f12394f7d5dc11fb3fd0a6ecd14780ea92ae6101 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Fri, 22 Jul 2016 17:02:59 -0700 Subject: [PATCH] Skip PhantomJS in testem --- test/integration/index.html | 1 - test/integration/promise-polyfill.js | 1 - testem.yml | 1 + 3 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 test/integration/promise-polyfill.js diff --git a/test/integration/index.html b/test/integration/index.html index 791e254c1..6de40b046 100644 --- a/test/integration/index.html +++ b/test/integration/index.html @@ -11,7 +11,6 @@
- diff --git a/test/integration/promise-polyfill.js b/test/integration/promise-polyfill.js deleted file mode 100644 index ee9cfb10a..000000000 --- a/test/integration/promise-polyfill.js +++ /dev/null @@ -1 +0,0 @@ -!function(t){function e(){}function n(t,e){return function(){t.apply(e,arguments)}}function o(t){if("object"!=typeof this)throw new TypeError("Promises must be constructed via new");if("function"!=typeof t)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=void 0,this._deferreds=[],s(t,this)}function r(t,e){for(;3===t._state;)t=t._value;return 0===t._state?void t._deferreds.push(e):(t._handled=!0,void a(function(){var n=1===t._state?e.onFulfilled:e.onRejected;if(null===n)return void(1===t._state?i:f)(e.promise,t._value);var o;try{o=n(t._value)}catch(r){return void f(e.promise,r)}i(e.promise,o)}))}function i(t,e){try{if(e===t)throw new TypeError("A promise cannot be resolved with itself.");if(e&&("object"==typeof e||"function"==typeof e)){var r=e.then;if(e instanceof o)return t._state=3,t._value=e,void u(t);if("function"==typeof r)return void s(n(r,e),t)}t._state=1,t._value=e,u(t)}catch(i){f(t,i)}}function f(t,e){t._state=2,t._value=e,u(t)}function u(t){2===t._state&&0===t._deferreds.length&&a(function(){t._handled||d(t._value)});for(var e=0,n=t._deferreds.length;n>e;e++)r(t,t._deferreds[e]);t._deferreds=null}function c(t,e,n){this.onFulfilled="function"==typeof t?t:null,this.onRejected="function"==typeof e?e:null,this.promise=n}function s(t,e){var n=!1;try{t(function(t){n||(n=!0,i(e,t))},function(t){n||(n=!0,f(e,t))})}catch(o){if(n)return;n=!0,f(e,o)}}var l=setTimeout,a="function"==typeof setImmediate&&setImmediate||function(t){l(t,0)},d=function(t){"undefined"!=typeof console&&console&&console.warn("Possible Unhandled Promise Rejection:",t)};o.prototype["catch"]=function(t){return this.then(null,t)},o.prototype.then=function(t,n){var o=new this.constructor(e);return r(this,new c(t,n,o)),o},o.all=function(t){var e=Array.prototype.slice.call(t);return new o(function(t,n){function o(i,f){try{if(f&&("object"==typeof f||"function"==typeof f)){var u=f.then;if("function"==typeof u)return void u.call(f,function(t){o(i,t)},n)}e[i]=f,0===--r&&t(e)}catch(c){n(c)}}if(0===e.length)return t([]);for(var r=e.length,i=0;io;o++)t[o].then(e,n)})},o._setImmediateFn=function(t){a=t},o._setUnhandledRejectionFn=function(t){d=t},"undefined"!=typeof module&&module.exports?module.exports=o:t.Promise||(t.Promise=o)}(this); \ No newline at end of file diff --git a/testem.yml b/testem.yml index 35150d2d6..4167fff4a 100644 --- a/testem.yml +++ b/testem.yml @@ -1,6 +1,7 @@ launch_in_dev: - Chrome - Firefox +skip: - PhantomJS framework: - qunit