Skip to content

Commit

Permalink
remove console.log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jodeleeuw committed Aug 9, 2024
1 parent 3462071 commit 382f075
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ describe("video-several-keyboard-responses simulation", () => {

const data = getData().values()[0];

console.log(data);

expect(data.rt.every((value) => value > 0)).toBe(true);
expect(data.response.length).toEqual(data.rt.length);
expect(data.video_time.length).toEqual(data.rt.length);
Expand Down
4 changes: 0 additions & 4 deletions packages/plugin-video-several-keyboard-responses/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -389,8 +389,6 @@ class VideoSeveralKeyboardResponsesPlugin implements JsPsychPlugin<Info> {
responses.push(this.jsPsych.pluginAPI.getValidKey(trial.choices));
}

console.log(rts);

const default_data = {
stimulus: trial.stimulus,
response: responses,
Expand All @@ -402,8 +400,6 @@ class VideoSeveralKeyboardResponsesPlugin implements JsPsychPlugin<Info> {

//this.jsPsych.pluginAPI.ensureSimulationDataConsistency(trial, data);

console.log(data);

return data;
}
}
Expand Down

0 comments on commit 382f075

Please sign in to comment.