Skip to content

Instantly share code, notes, and snippets.

@djfm
Created September 18, 2016 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djfm/0761275080df5fb3176d444a0d0aa7b7 to your computer and use it in GitHub Desktop.
Save djfm/0761275080df5fb3176d444a0d0aa7b7 to your computer and use it in GitHub Desktop.
chain(
() => storage.makeId('dress'),
() => storage.makeId('dress'),
() => storage.makeId('dress'),
(_, a, b, c) => {
a.should.be.lessThan(b);
a.should.be.lessThan(c);
b.should.be.lessThan(c);
}
)()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment