mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00
35 lines
722 B
JavaScript
35 lines
722 B
JavaScript
const root = '../../';
|
|
|
|
jest.useFakeTimers();
|
|
|
|
describe('animation plugin', function(){
|
|
|
|
beforeEach(function(){
|
|
require(root + 'jspsych.js');
|
|
require(root + 'plugins/jspsych-animation.js');
|
|
});
|
|
|
|
test('loads correctly', function(){
|
|
expect(typeof window.jsPsych.plugins['animation']).not.toBe('undefined');
|
|
});
|
|
|
|
// SKIP FOR NOW
|
|
test.skip('displays stimuli', function(){
|
|
|
|
var animation_sequence = ['img/face_1.jpg', 'img/face_2.jpg'];
|
|
|
|
var trial = {
|
|
type: 'animation',
|
|
stimuli: animation_sequence
|
|
}
|
|
|
|
jsPsych.init({
|
|
timeline: [trial],
|
|
auto_preload: false
|
|
});
|
|
|
|
expect(jsPsych.getDisplayElement().innerHTML).toMatch('<img src="img/face_1.jpg" id="jspsych-animation-image"></img>');
|
|
});
|
|
|
|
});
|