From 21f1f4e50334f2f801b6c058e4eeefe366cc213b Mon Sep 17 00:00:00 2001 From: Jonas Hermsmeier Date: Mon, 16 Jul 2018 15:54:54 +0200 Subject: [PATCH] fix(test): Turn SDK integration tests for the GUI back on Change-type: patch --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1e900ea5..a3d7f3ff 100644 --- a/Makefile +++ b/Makefile @@ -220,11 +220,15 @@ test-spectron: test-gui: electron-mocha $(MOCHA_OPTIONS) --renderer tests/gui +test-sdk: + electron-mocha $(MOCHA_OPTIONS) \ + tests/shared + test-cli: mocha $(MOCHA_OPTIONS) \ tests/shared -test: test-gui test-spectron +test: test-gui test-sdk test-spectron help: @echo "Available targets: $(TARGETS)"