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
"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); |