From 770049ea162573d5afa1aaefed6131fe5e0a77f7 Mon Sep 17 00:00:00 2001 From: danielhanrahan Date: Tue, 15 Feb 2022 18:02:23 +0000 Subject: Refactor apex-editor frontend build Moved frontend from src/main/resources/webapp to src/main/webapp Moved static resources such as jquery-ui to webapp/dist folder Configured jest to exclude webapp/dist from coverage report Removed unused ZIP file assembly Cleaned up POM Issue-ID: POLICY-3896 Signed-off-by: danielhanrahan Change-Id: Ia006eb94a39586219029866eef94aef38912ad65 --- gui-editors/gui-editor-apex/src/main/webapp/js/__test__/test-env.js | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 gui-editors/gui-editor-apex/src/main/webapp/js/__test__/test-env.js (limited to 'gui-editors/gui-editor-apex/src/main/webapp/js/__test__/test-env.js') diff --git a/gui-editors/gui-editor-apex/src/main/webapp/js/__test__/test-env.js b/gui-editors/gui-editor-apex/src/main/webapp/js/__test__/test-env.js new file mode 100644 index 0000000..8fd788a --- /dev/null +++ b/gui-editors/gui-editor-apex/src/main/webapp/js/__test__/test-env.js @@ -0,0 +1,2 @@ +import $ from 'jquery'; +global.$ = global.jQuery = $; \ No newline at end of file -- cgit 1.2.3-korg