Update tests due to removed DOM utilities

This commit is contained in:
Sergey Mashkov
2015-10-28 13:02:43 +03:00
parent 20aff28266
commit 703367c5c7
5 changed files with 3 additions and 19 deletions
@@ -4,5 +4,5 @@ import <caret>
// EXIST: java
// EXIST_JAVA_ONLY: javax
// EXIST_JS_ONLY: jquery, html5
// EXIST_JS_ONLY: jquery
// ABSENT: Array, Integer
@@ -1,10 +0,0 @@
package testing
fun someFun() {
defaultDocumentBuilderFa<caret>
}
// Important: This test checks that completion will find top level functions from jars.
// If you going to update it make sure that methods are not auto-imported
// EXIST: defaultDocumentBuilderFactory
+1 -1
View File
@@ -1,4 +1,4 @@
package kotlin.js.<caret>
package org.w3c.<caret>
// EXIST: dom
// ABSENT: Date, JSON, capitalize
@@ -2392,12 +2392,6 @@ public class JvmBasicCompletionTestGenerated extends AbstractJvmBasicCompletionT
doTest(fileName);
}
@TestMetadata("TopLevelFromStandardLibraryWithoutParam.kt")
public void testTopLevelFromStandardLibraryWithoutParam() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("idea/idea-completion/testData/basic/java/TopLevelFromStandardLibraryWithoutParam.kt");
doTest(fileName);
}
@TestMetadata("idea/idea-completion/testData/basic/java/boldOrGrayed")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
@@ -1,6 +1,6 @@
package example
import kotlin.js.dom.html.document
import kotlin.browser.document
import example.library.Counter