From 344390d1b59c646aabe10ca9810f169b88d48df1 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Tue, 27 Jan 2015 07:18:21 +1100 Subject: [PATCH] fix simple tests - @thejameskyle --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4e7d32dcb9..1d1fc08449 100644 --- a/Makefile +++ b/Makefile @@ -39,17 +39,17 @@ test: lint test-simple: # excludes test262 - export SIMPLE_6TO5_TESTS=1 + export SIMPLE_6TO5_TESTS=1; \ make test test-all: # includes traceur, esnext, regenerator - export ALL_6TO5_TESTS=1 + export ALL_6TO5_TESTS=1; \ make test test-cov: - export SIMPLE_6TO5_TESTS=1 rm -rf coverage + export SIMPLE_6TO5_TESTS=1; \ node $(ISTANBUL_CMD) $(MOCHA_CMD) -- test-travis: bootstrap