aboutsummaryrefslogtreecommitdiffstats
path: root/gui-pdp-monitoring/src/webapp/js/__test__/MonitoringUtils.test.js
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2020-03-17 19:09:29 +0000
committerGerrit Code Review <gerrit@onap.org>2020-03-17 19:09:29 +0000
commitf9e85b70f97c139911466336f29fb365de53306c (patch)
tree6e0d810e1f83af5b1fe6815049814edaa2cd24a4 /gui-pdp-monitoring/src/webapp/js/__test__/MonitoringUtils.test.js
parentc56aac90092406753c17eec883d80d841bcd8730 (diff)
parent4d4f41c7cc831906100e10838b40c3b8d86657f2 (diff)
Merge "Setup js unit test and code coverage framework"
Diffstat (limited to 'gui-pdp-monitoring/src/webapp/js/__test__/MonitoringUtils.test.js')
-rw-r--r--gui-pdp-monitoring/src/webapp/js/__test__/MonitoringUtils.test.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/gui-pdp-monitoring/src/webapp/js/__test__/MonitoringUtils.test.js b/gui-pdp-monitoring/src/webapp/js/__test__/MonitoringUtils.test.js
new file mode 100644
index 0000000..45fae79
--- /dev/null
+++ b/gui-pdp-monitoring/src/webapp/js/__test__/MonitoringUtils.test.js
@@ -0,0 +1,19 @@
+import $ from 'jquery';
+import { ajax_get, ajax_get_statistics } from "../MonitoringUtils";
+
+$.ajax = jest.fn().mockImplementation(() => {
+ const fakeResponse = {
+ data: {
+ id: 1,
+ name: "All",
+ value: "Dummy Data"
+ }
+ };
+ return Promise.resolve(fakeResponse);
+});
+
+test('ajax_get return ok', () => {
+ ajax_get().then(response => {
+ expect(response.data.id).toBe(1);
+ });
+}); \ No newline at end of file