Skip to content

Commit

Permalink
Add a missing @beforeeach in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPl292 committed Feb 22, 2024
1 parent 21a1588 commit 0df96a2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ package org.jetbrains.plugins.ideavim.extension.sneak
import com.maddyhome.idea.vim.api.keys
import com.maddyhome.idea.vim.state.mode.Mode
import org.jetbrains.plugins.ideavim.VimTestCase
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.TestInfo

class IdeaVimSneakTest : VimTestCase() {
@Throws(Exception::class)
@BeforeEach
override fun setUp(testInfo: TestInfo) {
super.setUp(testInfo)
enableExtensions("sneak")
Expand Down

0 comments on commit 0df96a2

Please sign in to comment.