Sha256: db3104cc7a8802be12a958c34c3962a6c86c9a0431959cade0b70b58010a07d9

Contents?: true

Size: 503 Bytes

Versions: 24

Compression:

Stored size: 503 Bytes

Contents

/**
 * @author thatcher
 */

(function(Q){

    Q.describe('Window Timer',{

        before:function(){
            //setup
        },
        after:function(){
            //tear down
        }    
        
    }).should('provide the required w3c interfaces', function(){

        expect(4);
        ok(setTimeout,      'setTimeout');
        ok(setInterval,     'setInterval');
        ok(clearTimeout,    'clearTimeout');
        ok(clearInterval,   'clearInterval');
        
    });
    
})(QUnit);

Version data entries

24 entries across 24 versions & 4 rubygems

Version Path
envjs-0.1.0 test/specs/window/timer.js
smparkes-envjs-0.0.12 test/specs/window/timer.js
smparkes-envjs-0.0.11 test/specs/window/timer.js
smparkes-envjs-0.0.10 test/specs/window/timer.js