Skip to content

Instantly share code, notes, and snippets.

View gobengo's full-sized avatar

Benjamin Goering gobengo

View GitHub Profile
"use strict";
var Promise = require("bluebird");
describe("ES7 async functions in Mocha", function() {
it("are really cool!", async function(){
console.log("waiting...");
await Promise.delay(1000);