mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00
100 lines
2.6 KiB
TypeScript
100 lines
2.6 KiB
TypeScript
import htmlKeyboardResponse from "@jspsych/plugin-html-keyboard-response";
|
|
|
|
import jsPsych from "../../src";
|
|
import { pressKey } from "../utils";
|
|
|
|
describe("The css_classes parameter for trials", function () {
|
|
test("Adds a single CSS class to the root jsPsych element", function () {
|
|
var trial = {
|
|
type: htmlKeyboardResponse,
|
|
stimulus: "<p>foo</p>",
|
|
css_classes: ["foo"],
|
|
};
|
|
|
|
jsPsych.init({ timeline: [trial] });
|
|
|
|
expect(jsPsych.getDisplayElement().classList).toContain("foo");
|
|
pressKey("a");
|
|
});
|
|
|
|
test("Gracefully handles single class when not in array", function () {
|
|
var trial = {
|
|
type: htmlKeyboardResponse,
|
|
stimulus: "<p>foo</p>",
|
|
css_classes: "foo",
|
|
};
|
|
|
|
jsPsych.init({ timeline: [trial] });
|
|
|
|
expect(jsPsych.getDisplayElement().classList).toContain("foo");
|
|
pressKey("a");
|
|
});
|
|
|
|
test("Removes the added classes at the end of the trial", function () {
|
|
var trial = {
|
|
type: htmlKeyboardResponse,
|
|
stimulus: "<p>foo</p>",
|
|
css_classes: ["foo"],
|
|
};
|
|
|
|
jsPsych.init({ timeline: [trial] });
|
|
|
|
expect(jsPsych.getDisplayElement().classList).toContain("foo");
|
|
pressKey("a");
|
|
expect(jsPsych.getDisplayElement().classList).not.toContain("foo");
|
|
});
|
|
|
|
test("Class inherits in nested timelines", function () {
|
|
var tm = {
|
|
timeline: [
|
|
{
|
|
type: htmlKeyboardResponse,
|
|
stimulus: "<p>foo</p>",
|
|
},
|
|
],
|
|
css_classes: ["foo"],
|
|
};
|
|
|
|
jsPsych.init({ timeline: [tm] });
|
|
|
|
expect(jsPsych.getDisplayElement().classList).toContain("foo");
|
|
pressKey("a");
|
|
expect(jsPsych.getDisplayElement().classList).not.toContain("foo");
|
|
});
|
|
|
|
test("Parameter works when defined as a function", function () {
|
|
var trial = {
|
|
type: htmlKeyboardResponse,
|
|
stimulus: "<p>foo</p>",
|
|
css_classes: function () {
|
|
return ["foo"];
|
|
},
|
|
};
|
|
|
|
jsPsych.init({ timeline: [trial] });
|
|
|
|
expect(jsPsych.getDisplayElement().classList).toContain("foo");
|
|
pressKey("a");
|
|
expect(jsPsych.getDisplayElement().classList).not.toContain("foo");
|
|
});
|
|
|
|
test("Parameter works when defined as a timeline variable", function () {
|
|
var trial = {
|
|
type: htmlKeyboardResponse,
|
|
stimulus: "<p>foo</p>",
|
|
css_classes: jsPsych.timelineVariable("css"),
|
|
};
|
|
|
|
var t = {
|
|
timeline: [trial],
|
|
timeline_variables: [{ css: ["foo"] }],
|
|
};
|
|
|
|
jsPsych.init({ timeline: [t] });
|
|
|
|
expect(jsPsych.getDisplayElement().classList).toContain("foo");
|
|
pressKey("a");
|
|
expect(jsPsych.getDisplayElement().classList).not.toContain("foo");
|
|
});
|
|
});
|