jsPsych/tests/plugins/plugin-audio-keyboard-response.test.js

15 lines
355 B
JavaScript

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