Created
June 23, 2016 15:29
-
-
Save proclaim/f4409a043d91a5bb53d2d5a65b55eccf 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
const testCase1 = () => { | |
// setup variables, conditions, and other funky junkie | |
someAsync().then((result) => { | |
// assign the result and process, it'll be used later for test conditions | |
}); | |
} | |
const testCase2 = () => { /* ... */ } | |
const testCase3 = () => { /* ... */ } | |
//... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment