@jspsych/plugin-tobii-calibration 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,125 @@
1
+ import { initJsPsych } from 'jspsych';
2
+ import TobiiCalibrationPlugin from '.';
3
+ describe('TobiiCalibrationPlugin', () => {
4
+ describe('static info', () => {
5
+ it('should have correct name', () => {
6
+ expect(TobiiCalibrationPlugin.info.name).toBe('tobii-calibration');
7
+ });
8
+ it('should have version defined', () => {
9
+ expect(TobiiCalibrationPlugin.info.version).toBeDefined();
10
+ });
11
+ });
12
+ describe('parameters', () => {
13
+ const params = TobiiCalibrationPlugin.info.parameters;
14
+ it('should have calibration_points parameter with default 9', () => {
15
+ expect(params.calibration_points).toBeDefined();
16
+ expect(params.calibration_points.default).toBe(9);
17
+ });
18
+ it("should have calibration_mode parameter with default 'view'", () => {
19
+ expect(params.calibration_mode).toBeDefined();
20
+ expect(params.calibration_mode.default).toBe('view');
21
+ });
22
+ it('should have point_size parameter with default 20', () => {
23
+ expect(params.point_size).toBeDefined();
24
+ expect(params.point_size.default).toBe(20);
25
+ });
26
+ it('should have point_color parameter', () => {
27
+ expect(params.point_color).toBeDefined();
28
+ expect(params.point_color.default).toBe('#ff0000');
29
+ });
30
+ it('should have point_duration parameter', () => {
31
+ expect(params.point_duration).toBeDefined();
32
+ expect(params.point_duration.default).toBe(500);
33
+ });
34
+ it('should have custom_points parameter', () => {
35
+ expect(params.custom_points).toBeDefined();
36
+ expect(params.custom_points.default).toBeNull();
37
+ });
38
+ it('should have show_progress parameter', () => {
39
+ expect(params.show_progress).toBeDefined();
40
+ expect(params.show_progress.default).toBe(true);
41
+ });
42
+ it('should have instructions parameter', () => {
43
+ expect(params.instructions).toBeDefined();
44
+ expect(typeof params.instructions.default).toBe('string');
45
+ });
46
+ it('should have background_color parameter', () => {
47
+ expect(params.background_color).toBeDefined();
48
+ expect(params.background_color.default).toBe('#808080');
49
+ });
50
+ it('should have max_retries parameter with default 1', () => {
51
+ expect(params.max_retries).toBeDefined();
52
+ expect(params.max_retries.default).toBe(1);
53
+ });
54
+ it('should have button_text parameter', () => {
55
+ expect(params.button_text).toBeDefined();
56
+ expect(params.button_text.default).toBe('Start Calibration');
57
+ });
58
+ it('should have button_color parameter', () => {
59
+ expect(params.button_color).toBeDefined();
60
+ expect(params.button_color.default).toBe('#007bff');
61
+ });
62
+ it('should have button_hover_color parameter', () => {
63
+ expect(params.button_hover_color).toBeDefined();
64
+ expect(params.button_hover_color.default).toBe('#0056b3');
65
+ });
66
+ it('should have retry_button_color parameter', () => {
67
+ expect(params.retry_button_color).toBeDefined();
68
+ expect(params.retry_button_color.default).toBe('#dc3545');
69
+ });
70
+ it('should have retry_button_hover_color parameter', () => {
71
+ expect(params.retry_button_hover_color).toBeDefined();
72
+ expect(params.retry_button_hover_color.default).toBe('#c82333');
73
+ });
74
+ it('should have success_color parameter', () => {
75
+ expect(params.success_color).toBeDefined();
76
+ expect(params.success_color.default).toBe('#28a745');
77
+ });
78
+ it('should have error_color parameter', () => {
79
+ expect(params.error_color).toBeDefined();
80
+ expect(params.error_color.default).toBe('#dc3545');
81
+ });
82
+ it('should have zoom_duration parameter with default 300', () => {
83
+ expect(params.zoom_duration).toBeDefined();
84
+ expect(params.zoom_duration.default).toBe(300);
85
+ });
86
+ it('should have explosion_duration parameter with default 400', () => {
87
+ expect(params.explosion_duration).toBeDefined();
88
+ expect(params.explosion_duration.default).toBe(400);
89
+ });
90
+ it('should have success_display_duration parameter with default 2000', () => {
91
+ expect(params.success_display_duration).toBeDefined();
92
+ expect(params.success_display_duration.default).toBe(2000);
93
+ });
94
+ it('should have instruction_display_duration parameter with default 3000', () => {
95
+ expect(params.instruction_display_duration).toBeDefined();
96
+ expect(params.instruction_display_duration.default).toBe(3000);
97
+ });
98
+ });
99
+ describe('data specification', () => {
100
+ const data = TobiiCalibrationPlugin.info.data;
101
+ it('should have calibration_success data field', () => {
102
+ expect(data.calibration_success).toBeDefined();
103
+ });
104
+ it('should have num_points data field', () => {
105
+ expect(data.num_points).toBeDefined();
106
+ });
107
+ it('should have mode data field', () => {
108
+ expect(data.mode).toBeDefined();
109
+ });
110
+ it('should have calibration_data data field', () => {
111
+ expect(data.calibration_data).toBeDefined();
112
+ });
113
+ it('should have num_attempts data field', () => {
114
+ expect(data.num_attempts).toBeDefined();
115
+ });
116
+ });
117
+ describe('instantiation', () => {
118
+ it('should instantiate without errors', () => {
119
+ const jsPsych = initJsPsych();
120
+ const plugin = new TobiiCalibrationPlugin(jsPsych);
121
+ expect(plugin).toBeDefined();
122
+ });
123
+ });
124
+ });
125
+ //# sourceMappingURL=index.spec.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.spec.js","sourceRoot":"","sources":["index.spec.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAEtC,OAAO,sBAAsB,MAAM,GAAG,CAAC;AAEvC,QAAQ,CAAC,wBAAwB,EAAE,GAAG,EAAE;IACtC,QAAQ,CAAC,aAAa,EAAE,GAAG,EAAE;QAC3B,EAAE,CAAC,0BAA0B,EAAE,GAAG,EAAE;YAClC,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC;QACrE,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,6BAA6B,EAAE,GAAG,EAAE;YACrC,MAAM,CAAC,sBAAsB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,WAAW,EAAE,CAAC;QAC5D,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,QAAQ,CAAC,YAAY,EAAE,GAAG,EAAE;QAC1B,MAAM,MAAM,GAAG,sBAAsB,CAAC,IAAI,CAAC,UAAU,CAAC;QAEtD,EAAE,CAAC,yDAAyD,EAAE,GAAG,EAAE;YACjE,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,WAAW,EAAE,CAAC;YAChD,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QACpD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,4DAA4D,EAAE,GAAG,EAAE;YACpE,MAAM,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,WAAW,EAAE,CAAC;YAC9C,MAAM,CAAC,MAAM,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,kDAAkD,EAAE,GAAG,EAAE;YAC1D,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,EAAE,CAAC;YACxC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;QAC7C,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,mCAAmC,EAAE,GAAG,EAAE;YAC3C,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,WAAW,EAAE,CAAC;YACzC,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QACrD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,sCAAsC,EAAE,GAAG,EAAE;YAC9C,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,WAAW,EAAE,CAAC;YAC5C,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QAClD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,qCAAqC,EAAE,GAAG,EAAE;YAC7C,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,WAAW,EAAE,CAAC;YAC3C,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,QAAQ,EAAE,CAAC;QAClD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,qCAAqC,EAAE,GAAG,EAAE;YAC7C,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,WAAW,EAAE,CAAC;YAC3C,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAClD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,oCAAoC,EAAE,GAAG,EAAE;YAC5C,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,WAAW,EAAE,CAAC;YAC1C,MAAM,CAAC,OAAO,MAAM,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC5D,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,wCAAwC,EAAE,GAAG,EAAE;YAChD,MAAM,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,WAAW,EAAE,CAAC;YAC9C,MAAM,CAAC,MAAM,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAC1D,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,kDAAkD,EAAE,GAAG,EAAE;YAC1D,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,WAAW,EAAE,CAAC;YACzC,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAC7C,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,mCAAmC,EAAE,GAAG,EAAE;YAC3C,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,WAAW,EAAE,CAAC;YACzC,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC;QAC/D,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,oCAAoC,EAAE,GAAG,EAAE;YAC5C,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,WAAW,EAAE,CAAC;YAC1C,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QACtD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,0CAA0C,EAAE,GAAG,EAAE;YAClD,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,WAAW,EAAE,CAAC;YAChD,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5D,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,0CAA0C,EAAE,GAAG,EAAE;YAClD,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,WAAW,EAAE,CAAC;YAChD,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5D,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,gDAAgD,EAAE,GAAG,EAAE;YACxD,MAAM,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC,WAAW,EAAE,CAAC;YACtD,MAAM,CAAC,MAAM,CAAC,wBAAwB,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAClE,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,qCAAqC,EAAE,GAAG,EAAE;YAC7C,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,WAAW,EAAE,CAAC;YAC3C,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QACvD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,mCAAmC,EAAE,GAAG,EAAE;YAC3C,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,WAAW,EAAE,CAAC;YACzC,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QACrD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,sDAAsD,EAAE,GAAG,EAAE;YAC9D,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,WAAW,EAAE,CAAC;YAC3C,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACjD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,2DAA2D,EAAE,GAAG,EAAE;YACnE,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,WAAW,EAAE,CAAC;YAChD,MAAM,CAAC,MAAM,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACtD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,kEAAkE,EAAE,GAAG,EAAE;YAC1E,MAAM,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC,WAAW,EAAE,CAAC;YACtD,MAAM,CAAC,MAAM,CAAC,wBAAwB,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC7D,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,sEAAsE,EAAE,GAAG,EAAE;YAC9E,MAAM,CAAC,MAAM,CAAC,4BAA4B,CAAC,CAAC,WAAW,EAAE,CAAC;YAC1D,MAAM,CAAC,MAAM,CAAC,4BAA4B,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACjE,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,QAAQ,CAAC,oBAAoB,EAAE,GAAG,EAAE;QAClC,MAAM,IAAI,GAAG,sBAAsB,CAAC,IAAI,CAAC,IAAI,CAAC;QAE9C,EAAE,CAAC,4CAA4C,EAAE,GAAG,EAAE;YACpD,MAAM,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,WAAW,EAAE,CAAC;QACjD,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,mCAAmC,EAAE,GAAG,EAAE;YAC3C,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,WAAW,EAAE,CAAC;QACxC,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,6BAA6B,EAAE,GAAG,EAAE;YACrC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC;QAClC,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,yCAAyC,EAAE,GAAG,EAAE;YACjD,MAAM,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,WAAW,EAAE,CAAC;QAC9C,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,qCAAqC,EAAE,GAAG,EAAE;YAC7C,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,WAAW,EAAE,CAAC;QAC1C,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,QAAQ,CAAC,eAAe,EAAE,GAAG,EAAE;QAC7B,EAAE,CAAC,mCAAmC,EAAE,GAAG,EAAE;YAC3C,MAAM,OAAO,GAAG,WAAW,EAAE,CAAC;YAC9B,MAAM,MAAM,GAAG,IAAI,sBAAsB,CAAC,OAAO,CAAC,CAAC;YACnD,MAAM,CAAC,MAAM,CAAC,CAAC,WAAW,EAAE,CAAC;QAC/B,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
@@ -0,0 +1,156 @@
1
+ import { initJsPsych } from 'jspsych';
2
+
3
+ import TobiiCalibrationPlugin from '.';
4
+
5
+ describe('TobiiCalibrationPlugin', () => {
6
+ describe('static info', () => {
7
+ it('should have correct name', () => {
8
+ expect(TobiiCalibrationPlugin.info.name).toBe('tobii-calibration');
9
+ });
10
+
11
+ it('should have version defined', () => {
12
+ expect(TobiiCalibrationPlugin.info.version).toBeDefined();
13
+ });
14
+ });
15
+
16
+ describe('parameters', () => {
17
+ const params = TobiiCalibrationPlugin.info.parameters;
18
+
19
+ it('should have calibration_points parameter with default 9', () => {
20
+ expect(params.calibration_points).toBeDefined();
21
+ expect(params.calibration_points.default).toBe(9);
22
+ });
23
+
24
+ it("should have calibration_mode parameter with default 'view'", () => {
25
+ expect(params.calibration_mode).toBeDefined();
26
+ expect(params.calibration_mode.default).toBe('view');
27
+ });
28
+
29
+ it('should have point_size parameter with default 20', () => {
30
+ expect(params.point_size).toBeDefined();
31
+ expect(params.point_size.default).toBe(20);
32
+ });
33
+
34
+ it('should have point_color parameter', () => {
35
+ expect(params.point_color).toBeDefined();
36
+ expect(params.point_color.default).toBe('#ff0000');
37
+ });
38
+
39
+ it('should have point_duration parameter', () => {
40
+ expect(params.point_duration).toBeDefined();
41
+ expect(params.point_duration.default).toBe(500);
42
+ });
43
+
44
+ it('should have custom_points parameter', () => {
45
+ expect(params.custom_points).toBeDefined();
46
+ expect(params.custom_points.default).toBeNull();
47
+ });
48
+
49
+ it('should have show_progress parameter', () => {
50
+ expect(params.show_progress).toBeDefined();
51
+ expect(params.show_progress.default).toBe(true);
52
+ });
53
+
54
+ it('should have instructions parameter', () => {
55
+ expect(params.instructions).toBeDefined();
56
+ expect(typeof params.instructions.default).toBe('string');
57
+ });
58
+
59
+ it('should have background_color parameter', () => {
60
+ expect(params.background_color).toBeDefined();
61
+ expect(params.background_color.default).toBe('#808080');
62
+ });
63
+
64
+ it('should have max_retries parameter with default 1', () => {
65
+ expect(params.max_retries).toBeDefined();
66
+ expect(params.max_retries.default).toBe(1);
67
+ });
68
+
69
+ it('should have button_text parameter', () => {
70
+ expect(params.button_text).toBeDefined();
71
+ expect(params.button_text.default).toBe('Start Calibration');
72
+ });
73
+
74
+ it('should have button_color parameter', () => {
75
+ expect(params.button_color).toBeDefined();
76
+ expect(params.button_color.default).toBe('#007bff');
77
+ });
78
+
79
+ it('should have button_hover_color parameter', () => {
80
+ expect(params.button_hover_color).toBeDefined();
81
+ expect(params.button_hover_color.default).toBe('#0056b3');
82
+ });
83
+
84
+ it('should have retry_button_color parameter', () => {
85
+ expect(params.retry_button_color).toBeDefined();
86
+ expect(params.retry_button_color.default).toBe('#dc3545');
87
+ });
88
+
89
+ it('should have retry_button_hover_color parameter', () => {
90
+ expect(params.retry_button_hover_color).toBeDefined();
91
+ expect(params.retry_button_hover_color.default).toBe('#c82333');
92
+ });
93
+
94
+ it('should have success_color parameter', () => {
95
+ expect(params.success_color).toBeDefined();
96
+ expect(params.success_color.default).toBe('#28a745');
97
+ });
98
+
99
+ it('should have error_color parameter', () => {
100
+ expect(params.error_color).toBeDefined();
101
+ expect(params.error_color.default).toBe('#dc3545');
102
+ });
103
+
104
+ it('should have zoom_duration parameter with default 300', () => {
105
+ expect(params.zoom_duration).toBeDefined();
106
+ expect(params.zoom_duration.default).toBe(300);
107
+ });
108
+
109
+ it('should have explosion_duration parameter with default 400', () => {
110
+ expect(params.explosion_duration).toBeDefined();
111
+ expect(params.explosion_duration.default).toBe(400);
112
+ });
113
+
114
+ it('should have success_display_duration parameter with default 2000', () => {
115
+ expect(params.success_display_duration).toBeDefined();
116
+ expect(params.success_display_duration.default).toBe(2000);
117
+ });
118
+
119
+ it('should have instruction_display_duration parameter with default 3000', () => {
120
+ expect(params.instruction_display_duration).toBeDefined();
121
+ expect(params.instruction_display_duration.default).toBe(3000);
122
+ });
123
+ });
124
+
125
+ describe('data specification', () => {
126
+ const data = TobiiCalibrationPlugin.info.data;
127
+
128
+ it('should have calibration_success data field', () => {
129
+ expect(data.calibration_success).toBeDefined();
130
+ });
131
+
132
+ it('should have num_points data field', () => {
133
+ expect(data.num_points).toBeDefined();
134
+ });
135
+
136
+ it('should have mode data field', () => {
137
+ expect(data.mode).toBeDefined();
138
+ });
139
+
140
+ it('should have calibration_data data field', () => {
141
+ expect(data.calibration_data).toBeDefined();
142
+ });
143
+
144
+ it('should have num_attempts data field', () => {
145
+ expect(data.num_attempts).toBeDefined();
146
+ });
147
+ });
148
+
149
+ describe('instantiation', () => {
150
+ it('should instantiate without errors', () => {
151
+ const jsPsych = initJsPsych();
152
+ const plugin = new TobiiCalibrationPlugin(jsPsych);
153
+ expect(plugin).toBeDefined();
154
+ });
155
+ });
156
+ });