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