mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-13 09:08:13 +00:00
25 lines
440 B
JavaScript
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);
|
|
});
|
|
});
|