From 2fb8d7d8f34478ec2b7391be73951a5645e58a8b Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Tue, 1 Oct 2019 16:44:56 -0700 Subject: [PATCH] test: add run_integration_test_debug package.json script to run integration test with DEBUG=1 Usage is `yarn run_integration_test_debug //examples:examples_foobar` and `yarn run_integration_test_debug //e2e:e2e_foobar` --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 71e0a6f713..4d8ac53f94 100644 --- a/package.json +++ b/package.json @@ -77,6 +77,7 @@ "test_e2e": "bazel --host_jvm_args=-Xms256m --host_jvm_args=-Xmx1280m test --test_tag_filters=e2e --local_resources=792,1.0,1.0 --test_arg=--local_resources=13288,1.0,1.0 ...", "test_examples": "bazel --host_jvm_args=-Xms256m --host_jvm_args=-Xmx1280m test --test_tag_filters=examples --local_resources=792,1.0,1.0 --test_arg=--local_resources=13288,1.0,1.0 ...", "run_integration_test": "bazel --host_jvm_args=-Xms256m --host_jvm_args=-Xmx1280m run --local_resources=792,1.0,1.0 --test_arg=--local_resources=13288,1.0,1.0", + "run_integration_test_debug": "yarn run_integration_test --define=DEBUG=1", "test_all": "./scripts/test_all.sh", "clean_all": "./scripts/clean_all.sh", "// Unchecked warnings": "The following warnings are not checked as disabling them locally is broken",