Created
September 18, 2016 13:02
-
-
Save djfm/0761275080df5fb3176d444a0d0aa7b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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