jsPsych/tests/plugins/plugin-vsl-animate-occlusion.test.js
2017-06-13 22:01:07 -04:00

17 lines
360 B
JavaScript

const root = '../../';
jest.useFakeTimers();
describe('vsl-animate-occlusion plugin', function(){
beforeEach(function(){
require(root + 'jspsych.js');
require(root + 'plugins/jspsych-vsl-animate-occlusion.js');
});
test('loads correctly', function(){
expect(typeof window.jsPsych.plugins['vsl-animate-occlusion']).not.toBe('undefined');
});
});