Created
January 28, 2019 05:04
-
-
Save deadlysyn/945b1fc7038c2358b238a0e4b38acdc7 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 databaseTest = () => | |
new Promise(resolve => { | |
setTimeout(() => { | |
console.log('db test running'); | |
resolve({ | |
message: 'OK', | |
timestamp: Date.now(), | |
}); | |
}, 3000); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment