disable test262 tests by default

This commit is contained in:
Sebastian McKenzie 2015-03-10 02:34:35 +11:00
parent 5dde63fa0a
commit 6b0320fc83
2 changed files with 1 additions and 7 deletions

View File

@ -46,11 +46,6 @@ test:
$(MOCHA_CMD)
make test-clean
test-simple:
# excludes test262
export SIMPLE_BABEL_TESTS=1; \
make test
test-all:
export ALL_BABEL_TESTS=1; \
make test
@ -58,7 +53,6 @@ test-all:
test-cov:
rm -rf coverage
make build-core-test
export SIMPLE_BABEL_TESTS=1; \
node $(ISTANBUL_CMD) $(MOCHA_CMD) --
test-travis: bootstrap build

View File

@ -1,4 +1,4 @@
if (process.env.SIMPLE_BABEL_TESTS) return;
if (!process.env.ALL_BABEL_TESTS) return;
require("./_helper").assertVendor("test262");