jsPsych/tests/timeline-variables.test.js
2017-05-24 23:28:11 -04:00

25 lines
440 B
JavaScript

const root = '../';
beforeEach(function(){
require(root + 'jspsych.js');
require(root + 'plugins/jspsych-text.js');
});
describe('randomize order', function(){
test('holder', function(){
expect(true).toBe(true);
});
});
describe('repetitons', function(){
test('holder', function(){
expect(true).toBe(true);
});
});
describe('sampling', function(){
test('holder', function(){
expect(true).toBe(true);
});
});