Sha256: c08a141097925a2150921d2284e17e1386135cd8a8f96b060e363ff004321083

Contents?: true

Size: 1.09 KB

Versions: 9

Compression:

Stored size: 1.09 KB

Contents

// Jasmine.Async, v0.1.0
// Copyright (c)2012 Muted Solutions, LLC. All Rights Reserved.
// Distributed under MIT license
// http://github.com/derickbailey/jasmine.async
this.AsyncSpec = (function(global){

  // Private Methods
  // ---------------
  
  function runAsync(block){
    return function(){
      var done = false;
      var complete = function(){ done = true; };

      runs(function(){
        block(complete);
      });

      waitsFor(function(){
        return done;
      });
    };
  }

  // Constructor Function
  // --------------------

  function AsyncSpec(spec){
    this.spec = spec;
  }

  // Public API
  // ----------

  AsyncSpec.prototype.beforeEach = function(block){
    this.spec.beforeEach(runAsync(block));
  };

  AsyncSpec.prototype.afterEach = function(block){
    this.spec.afterEach(runAsync(block));
  };

  AsyncSpec.prototype.it = function(description, block){
    // For some reason, `it` is not attached to the current
    // test suite, so it has to be called from the global
    // context.
    global.it(description, runAsync(block));
  };

  return AsyncSpec;
})(this);

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
kojac-0.17.0 spec/external/jasmine.async.js
kojac-0.16.0 spec/external/jasmine.async.js
kojac-0.15.0 spec/external/jasmine.async.js
kojac-0.13.0 spec/external/jasmine.async.js
kojac-0.12.0 spec/external/jasmine.async.js
kojac-0.11.0 spec/external/jasmine.async.js
kojac-0.9.1 spec/external/jasmine.async.js
kojac-0.9.0.1 spec/external/jasmine.async.js
kojac-0.9.0 spec/external/jasmine.async.js