mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-05-10 21:34:06 +02:00
Do not run tests for esc iin neovim
This commit is contained in:
parent
9cf0e285b4
commit
4809742088
@ -9,12 +9,15 @@
|
||||
package org.jetbrains.plugins.ideavim.action
|
||||
|
||||
import com.intellij.idea.TestFor
|
||||
import org.jetbrains.plugins.ideavim.SkipNeovimReason
|
||||
import org.jetbrains.plugins.ideavim.TestWithoutNeovim
|
||||
import org.jetbrains.plugins.ideavim.VimTestCase
|
||||
import org.junit.jupiter.api.Test
|
||||
|
||||
class EscapeTest : VimTestCase() {
|
||||
@Test
|
||||
@TestFor(issues = ["VIM-3190"])
|
||||
@TestWithoutNeovim(reason = SkipNeovimReason.NOT_VIM_TESTING)
|
||||
fun `mapping to control esc`() {
|
||||
configureByText(
|
||||
"""
|
||||
@ -42,6 +45,7 @@ class EscapeTest : VimTestCase() {
|
||||
|
||||
@Test
|
||||
@TestFor(issues = ["VIM-3190"])
|
||||
@TestWithoutNeovim(reason = SkipNeovimReason.NOT_VIM_TESTING)
|
||||
fun `mapping to alt esc`() {
|
||||
configureByText(
|
||||
"""
|
||||
@ -69,6 +73,7 @@ class EscapeTest : VimTestCase() {
|
||||
|
||||
@Test
|
||||
@TestFor(issues = ["VIM-3190"])
|
||||
@TestWithoutNeovim(reason = SkipNeovimReason.NOT_VIM_TESTING)
|
||||
fun `mapping to shift esc`() {
|
||||
configureByText(
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user