Skip to content

Commit 5c4e7ef

Browse files
committed
Remove broken test
1 parent 2f30724 commit 5c4e7ef

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

tests/AutoImports.test.cpp

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1449,25 +1449,6 @@ TEST_CASE_FIXTURE(Fixture, "auto_import_empty_require_statement")
14491449
CHECK_EQ(item->additionalTextEdits[0].range.start.line, 1);
14501450
}
14511451

1452-
TEST_CASE_FIXTURE(Fixture, "auto_imports_shows_up_in_tables_after_equals_sign")
1453-
{
1454-
client->globalConfig.completion.imports.enabled = true;
1455-
auto [source, marker] = sourceWithMarker(R"(
1456-
create({
1457-
Key = |
1458-
})
1459-
)");
1460-
1461-
auto uri = newDocument("foo.luau", source);
1462-
1463-
lsp::CompletionParams params;
1464-
params.textDocument = lsp::TextDocumentIdentifier{uri};
1465-
params.position = marker;
1466-
1467-
auto result = workspace.completion(params, nullptr);
1468-
CHECK(getItem(result, "ReplicatedStorage"));
1469-
}
1470-
14711452
TEST_CASE_FIXTURE(Fixture, "auto_imports_do_not_show_when_completion_property")
14721453
{
14731454
client->globalConfig.completion.imports.enabled = true;

0 commit comments

Comments
 (0)