aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/expect/ExpectTest.kt
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/base/src/test/kotlin/expect/ExpectTest.kt')
-rw-r--r--plugins/base/src/test/kotlin/expect/ExpectTest.kt28
1 files changed, 0 insertions, 28 deletions
diff --git a/plugins/base/src/test/kotlin/expect/ExpectTest.kt b/plugins/base/src/test/kotlin/expect/ExpectTest.kt
deleted file mode 100644
index f1eb2a77..00000000
--- a/plugins/base/src/test/kotlin/expect/ExpectTest.kt
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
- */
-
-package expect
-
-import org.junit.jupiter.api.DynamicTest.dynamicTest
-import org.junit.jupiter.api.TestFactory
-import kotlin.test.Ignore
-
-class ExpectTest : AbstractExpectTest() {
- private val ignores: List<String> = listOf(
- "images",
- "scripts",
- "images",
- "styles",
- "*.js",
- "*.css",
- "*.svg",
- "*.map"
- )
-
- @Ignore
- @TestFactory
- fun expectTest() = testDir?.dirsWithFormats(formats).orEmpty().map { (p, f) ->
- dynamicTest("${p.fileName}-$f") { testOutputWithExcludes(p, f, ignores) }
- }
-}