jsPsych/packages/jspsych/tests/core/css-classes-parameter.test.ts
2021-07-06 17:55:42 +02:00

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");
});
});