const utils = require('../testing-utils.js'); const root = '../../'; jest.useFakeTimers(); describe('image-button-response', function(){ beforeEach(function(){ require(root + 'jspsych.js'); require(root + 'plugins/jspsych-image-button-response'); }); test('loads correctly', function(){ expect(typeof window.jsPsych.plugins['image-button-response']).not.toBe('undefined'); }); test('displays image stimulus', function(){ var trial = { type: 'image-button-response', stimulus: '../media/blue.png', choices: ['button-choice'] } jsPsych.init({ timeline: [trial], auto_preload: false }); expect(jsPsych.getDisplayElement().innerHTML).toMatch(''); }); test('display button labels', function(){ var trial = { type: 'image-button-response', stimulus: '../media/blue.png', choices: ['button-choice1', 'button-choice2'] } jsPsych.init({ timeline: [trial], auto_preload: false }); expect(jsPsych.getDisplayElement().innerHTML).toMatch(new RegExp('')); expect(jsPsych.getDisplayElement().innerHTML).toMatch(new RegExp('')); }); test('display button html', function(){ var trial = { type: 'image-button-response', stimulus: '../media/blue.png', choices: ['buttonChoice'], button_html: '', } jsPsych.init({ timeline: [trial], auto_preload: false }); expect(jsPsych.getDisplayElement().innerHTML).toMatch(new RegExp('')); }); test('display should clear after button click', function(){ var trial = { type: 'image-button-response', stimulus: '../media/blue.png', choices: ['button-choice'], } jsPsych.init({ timeline: [trial], auto_preload: false }); expect(jsPsych.getDisplayElement().innerHTML).toMatch(new RegExp('')); utils.clickTarget(document.querySelector('#jspsych-image-button-response-button-0')); expect(jsPsych.getDisplayElement().innerHTML).toBe(''); }); test('prompt should append below button', function(){ var trial = { type: 'image-button-response', stimulus: '../media/blue.png', choices: ['button-choice'], prompt: '

This is a prompt

' } jsPsych.init({ timeline: [trial], auto_preload: false }); expect(jsPsych.getDisplayElement().innerHTML).toMatch('

This is a prompt

'); }); test('should hide stimulus if stimulus-duration is set', function(){ var trial = { type: 'image-button-response', stimulus: '../media/blue.png', choices: ['button-choice'], stimulus_duration: 500 } jsPsych.init({ timeline: [trial], auto_preload: false }); expect(jsPsych.getDisplayElement().querySelector('#jspsych-image-button-response-stimulus').style.visibility).toMatch(""); jest.runTimersToTime(500); expect(jsPsych.getDisplayElement().querySelector('#jspsych-image-button-response-stimulus').style.visibility).toMatch('hidden'); }); test('should end trial when trial duration is reached', function(){ var trial = { type: 'image-button-response', stimulus: '../media/blue.png', choices: ['f','j'], trial_duration: 500 } jsPsych.init({ timeline: [trial], auto_preload: false }); expect(jsPsych.getDisplayElement().innerHTML).toMatch(''); jest.runTimersToTime(500); expect(jsPsych.getDisplayElement().innerHTML).toBe(''); }); test('should end trial when button is clicked', function(){ var trial = { type: 'image-button-response', stimulus: '../media/blue.png', choices: ['button-choice'], response_ends_trial: true, } jsPsych.init({ timeline: [trial], auto_preload: false }); expect(jsPsych.getDisplayElement().innerHTML).toMatch(''); utils.clickTarget(document.querySelector('#jspsych-image-button-response-button-0')); expect(jsPsych.getDisplayElement().innerHTML).toBe(''); }); });