diff --git a/src/Test/Spec/Mocha.js b/src/Test/Spec/Mocha.js index 6219964..43faf5c 100644 --- a/src/Test/Spec/Mocha.js +++ b/src/Test/Spec/Mocha.js @@ -36,7 +36,7 @@ exports.describe = function (only) { return function (name) { return function (nested) { return function () { - var f = only ? describe : describe.only; + var f = only ? describe.only : describe; f(name, function () { nested(); });