Last active
September 18, 2016 13:11
-
-
Save djfm/42d9fcbf143326b9b9ea88e1c307f0d0 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
storage.makeId('dress') | |
.then( | |
a => | |
storage.makeId('dress') | |
.then( | |
b => | |
storage.makeId('dress') | |
.then( | |
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