disable test262 tests by default
This commit is contained in:
parent
5dde63fa0a
commit
6b0320fc83
6
Makefile
6
Makefile
@ -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
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
if (process.env.SIMPLE_BABEL_TESTS) return;
|
||||
if (!process.env.ALL_BABEL_TESTS) return;
|
||||
|
||||
require("./_helper").assertVendor("test262");
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user