From 9811ff71d2b4bc7940c319c91a2c5f1e32d2660f Mon Sep 17 00:00:00 2001 From: Gregg Van Hove Date: Tue, 8 Aug 2017 14:37:45 -0700 Subject: [PATCH] Update afterAll documentation - See jasmine/jasmine.github.io#76 --- src/core/requireInterface.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/requireInterface.js b/src/core/requireInterface.js index 468f9f93..9becb320 100644 --- a/src/core/requireInterface.js +++ b/src/core/requireInterface.js @@ -126,7 +126,7 @@ getJasmineRequireObj().interface = function(jasmine, env) { }, /** - * Run some shared teardown once before all of the specs in the {@link describe} are run. + * Run some shared teardown once after all of the specs in the {@link describe} are run. * * _Note:_ Be careful, sharing the teardown from a afterAll makes it easy to accidentally leak state between your specs so that they erroneously pass or fail. * @name afterAll