We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09e99cd commit ca16b1dCopy full SHA for ca16b1d
src/core/events.test.js
@@ -133,22 +133,6 @@ describe("core.events tests", () => {
133
// catched.
134
expect(true).toBe(true);
135
});
136
-
137
- it("Handles double-registration attempts by rejecting the await_pattern_init promise.", async () => {
138
- class Pat extends BasePattern {
139
- static name = "tmp";
140
- static trigger = ".pat-tmp";
141
- init() {}
142
- }
143
144
- const el = document.createElement("div");
145
- const instance = new Pat(el);
146
147
- await events.await_pattern_init(instance);
148
149
- // If test reaches this expect statement, all is fine.
150
- expect(true).toBe(true);
151
- });
152
153
154
describe("2 - event factories", () => {
0 commit comments