aboutsummaryrefslogtreecommitdiffstats
path: root/gui-pdp-monitoring/src/webapp/js/__test__/MonitoringUtils.test.js
diff options
context:
space:
mode:
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