%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11584/cwd/html/ppaobm/vendor/webcreate/jquery-ias/test/ |
Upload File : |
buster.spec.expose(); describe("IAS", function () { before(function() { this.timeout = 10000; window.scrollTo(0, 0); jQuery.ias({ container : '.listing', item: '.post', pagination: '.navigation', next: '.next-posts a' }); }); after(function() { jQuery.ias('destroy'); }); it("should call initialize on extension when loading extension", function() { var deferred = when.defer(); var spy1 = this.spy(); var anExtension = function() {}; anExtension.prototype.bind = function(ias) { // an extension needs a bind method }; anExtension.prototype.initialize = function(ias) { spy1.call(); }; jQuery.ias().extension(new anExtension()); expect(spy1).toHaveBeenCalledOnce(); deferred.resolve(); return deferred.promise; }); it("should call bind on extension when initializing", function() { var deferred = when.defer(); var spy1 = this.spy(); var anExtension = function() {}; anExtension.prototype.bind = function(ias) { spy1.call(); }; jQuery.ias().extension(new anExtension()); // wait some for ias to be fully initialized wait(100).then(function() { expect(spy1).toHaveBeenCalledOnce(); deferred.resolve(); }); return deferred.promise; }); it("extension can add listeners", function() { var anExtension = function() { this.listeners = { test: new IASCallbacks(jQuery) }; }; anExtension.prototype.bind = function(ias) { }; anExtension.prototype.initialize = function(ias) { jQuery.extend(ias.listeners, this.listeners); }; // when the extension isn't added, this will throw an error expect( function () { jQuery.ias().on('test', function () { }); } ).toThrow('Error', 'There is no event called "test"'); // now let's register the extension jQuery.ias().extension(new anExtension()); // this should now be possible and not throw an error jQuery.ias().on('test', function() {}); jQuery.ias().on('scroll', function() {}); }); });