From 4095dd4aeec55deb09e7a923a8db9a8cf60cb7c5 Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Sun, 20 Nov 2022 00:17:49 -0800 Subject: [PATCH] Add editor unit test as part of execution. --- packages/editor/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor/package.json b/packages/editor/package.json index 6cfe27a7..bda4b87a 100644 --- a/packages/editor/package.json +++ b/packages/editor/package.json @@ -8,7 +8,7 @@ "cy:run": "cypress run", "lint": "eslint src --ext js,ts,tsx", "test:integration": "start-server-and-test 'yarn playground' http-get://localhost:8081 'yarn cy:run'", - "test": "yarn test:integration", + "test": "yarn test:unit test:integration", "test:unit": "jest ./test/unit/* --detectOpenHandles", "i18n:extract": "formatjs extract 'src/**/*.ts*' --ignore 'src/@types/**/*' --out-file lang/en.json", "i18n:compile": "for lang in {'es','en','fr','de','zh','ru'};do formatjs compile lang/${lang}.json --ast --out-file src/compiled-lang/${lang}.json;done"