We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a36b0aa commit c592bd3Copy full SHA for c592bd3
1 file changed
src/core/dom.test.js
@@ -904,7 +904,7 @@ describe("core.dom tests", () => {
904
});
905
it("can be used to store and retrieve arbitrary data on DOM nodes.", function () {
906
const el = document.createElement("div");
907
- const data = { okay() {} };
+ const data = { okay() { } };
908
dom.set_data(el, "test_data", data);
909
expect(dom.get_data(el, "test_data")).toBe(data);
910
0 commit comments