Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import test from 'ava';
import Chainable from '../src/Chainable';

test('Calling .end() returns parent', t => {
  const parent = { parent: true };
  const chain = new Chainable(parent);

  t.is(chain.end(), parent);
});