remove names from optional async tests

This commit is contained in:
Sebastian McKenzie 2015-01-22 10:12:11 +11:00
parent 3e2d611707
commit 9ed8e4a35b
2 changed files with 2 additions and 2 deletions

View File

@ -37,6 +37,6 @@ var _asyncToGenerator = function (fn) {
};
};
var foo = _asyncToGenerator(function* foo() {
var foo = _asyncToGenerator(function* () {
var wat = yield bar();
});

View File

@ -2,6 +2,6 @@
var _bluebird = require("bluebird");
var foo = _bluebird.coroutine(function* foo() {
var foo = _bluebird.coroutine(function* () {
var wat = yield bar();
});