Skip to content

Instantly share code, notes, and snippets.

@deadlysyn
Created January 28, 2019 05:04
Show Gist options
  • Save deadlysyn/945b1fc7038c2358b238a0e4b38acdc7 to your computer and use it in GitHub Desktop.
Save deadlysyn/945b1fc7038c2358b238a0e4b38acdc7 to your computer and use it in GitHub Desktop.
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