Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 11C1618B65 for ; Fri, 21 Aug 2015 17:53:29 +0000 (UTC) Received: (qmail 29840 invoked by uid 500); 21 Aug 2015 17:53:29 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 29812 invoked by uid 500); 21 Aug 2015 17:53:28 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 29802 invoked by uid 99); 21 Aug 2015 17:53:28 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Aug 2015 17:53:28 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D13B5E0283; Fri, 21 Aug 2015 17:53:28 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: csantanapr@apache.org To: commits@cordova.apache.org Message-Id: <3beac4ee63f7494b9e355518542ffa03@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cordova-plugin-test-framework git commit: fix readme typo describe instead of define Date: Fri, 21 Aug 2015 17:53:28 +0000 (UTC) Repository: cordova-plugin-test-framework Updated Branches: refs/heads/master c0d6f6e96 -> e8567f0de fix readme typo describe instead of define Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/commit/e8567f0d Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/tree/e8567f0d Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/diff/e8567f0d Branch: refs/heads/master Commit: e8567f0de84602d92b43ddbef46ce2b35f3dd69d Parents: c0d6f6e Author: Carlos Santana Authored: Fri Aug 21 13:46:30 2015 -0400 Committer: Carlos Santana Committed: Fri Aug 21 13:46:30 2015 -0400 ---------------------------------------------------------------------- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework/blob/e8567f0d/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 5f1503b..f47811a 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Simply export a function named `defineAutoTests`, which (gasp!) defines your aut ``` exports.defineAutoTests = function() { - define('awesome tests', function() { + describe('awesome tests', function() { it('do something sync', function() { expect(1).toBe(1); ... @@ -83,7 +83,7 @@ exports.defineAutoTests = function() { }); }); - define('more awesome tests', function() { + describe('more awesome tests', function() { ... }); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org