From 4105b19f75ee5ba2bc5ce263308d788ec672ea25 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 23 Jun 2014 00:48:46 -0700 Subject: [PATCH] Drop Narwhal from test/run-test.sh and contributing text. [ci skip] --- CONTRIBUTING.md | 2 +- test/run-test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index feb990835..8df1c49e6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,7 +9,7 @@ Include updated unit tests in the `test` directory as part of your pull request. Don’t worry about regenerating the documentation or distribution files. You can run the tests from the command line via `node test/test`, or open `test/index.html` in a web browser. -The `test/run-test.sh` script attempts to run the tests in [Rhino](https://developer.mozilla.org/en-US/docs/Rhino), [Narwhal](https://github.com/280north/narwhal), [RingoJS](http://ringojs.org/), [PhantomJS](http://phantomjs.org/), and [Node](http://nodejs.org/), before running them in your default browser. +The `test/run-test.sh` script attempts to run the tests in [Rhino](https://developer.mozilla.org/en-US/docs/Rhino), [RingoJS](http://ringojs.org/), [PhantomJS](http://phantomjs.org/), and [Node](http://nodejs.org/), before running them in your default browser. The [Backbone](http://backbonejs.org/) and [Underscore](http://http://underscorejs.org/) test suites are included as well. ## Contributor License Agreement diff --git a/test/run-test.sh b/test/run-test.sh index 70a41bc87..265d334fe 100644 --- a/test/run-test.sh +++ b/test/run-test.sh @@ -1,6 +1,6 @@ cd "$(dirname "$0")" -for cmd in rhino "rhino -require" narwhal ringo phantomjs; do +for cmd in rhino "rhino -require" ringo phantomjs; do echo "Testing in $cmd..." $cmd test.js ../dist/lodash.compat.js && $cmd test.js ../dist/lodash.compat.min.js echo ""