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