From 0ea168c40021fc5f150839deb7c24a57f99cac12 Mon Sep 17 00:00:00 2001 From: Nick Freyaldenhoven Date: Tue, 14 Jan 2020 11:17:14 -0600 Subject: [PATCH] Fixing an issue with failed tests orphaning the docker container. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 404ea07..1471fa9 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "private": false, "scripts": { "build": "tsc", - "test": "yarn start:snapshot && sleep 2 && yarn test:ci && yarn stop:snapshot", + "test": "yarn start:snapshot && sleep 2 && yarn test:ci; yarn stop:snapshot", "test:ci": "ts-mocha --exit test/*_test.ts", "clean": "rm -rf node_modules dist", "compile:assets": "yarn build && webpack",