Skip to content

Commit

Permalink
Remove unnecessary test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
radiantshaw committed May 29, 2022
1 parent 5dbb305 commit 980b95a
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions src/tests/modules/core/event_options_tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,17 +190,6 @@ export default class EventOptionsTests extends LogControllerTestCase {
)
}

async "test self option absence"() {
this.setAction(this.buttonElement, "click->c#log")
await this.nextFrame

await this.triggerEvent(this.buttonElement, "click")

this.assertActions(
{ name: "log", eventType: "click" }
)
}

async "test self option true"() {
this.setAction(this.buttonElement, "click->c#log:self")
await this.nextFrame
Expand All @@ -221,17 +210,6 @@ export default class EventOptionsTests extends LogControllerTestCase {
this.assertNoActions()
}

async "test self option absence on parent"() {
this.setAction(this.element, "click->c#log")
await this.nextFrame

await this.triggerEvent(this.buttonElement, "click")

this.assertActions(
{ name: "log", eventType: "click" }
)
}

async "test self option true on parent"() {
this.setAction(this.element, "click->c#log:self")
await this.nextFrame
Expand Down

0 comments on commit 980b95a

Please sign in to comment.