mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-11 16:18:11 +00:00
9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
const root = '../';
|
|
|
|
require(root + 'jspsych.js');
|
|
require(root + 'plugins/jspsych-single-stim.js');
|
|
|
|
test('jsPsych should be in the window object', function(){
|
|
expect(typeof window.jsPsych).not.toBe('undefined');
|
|
});
|