X-Git-Url: https://git.lukelau.me/?a=blobdiff_plain;f=test%2FTest.hs;h=22f8e21996df80c4b9e9a81b95d07edbab5e72d3;hb=803c622b2a390a310584d9f8170c9ec1c8ea67db;hp=c662d46af44fb141fe0ec7d13172fe119dbbb9cc;hpb=51a500ceafa6d32b39e8c79bbb885fd1f0d559a4;p=lsp-test.git diff --git a/test/Test.hs b/test/Test.hs index c662d46..22f8e21 100644 --- a/test/Test.hs +++ b/test/Test.hs @@ -240,7 +240,8 @@ main = hspec $ do noDiagnostics noDiagnostics - item:_ <- getCompletions doc (Position 5 5) + comps <- getCompletions doc (Position 5 5) + let item = head (filter (\x -> x ^. label == "interactWithUser") comps) liftIO $ do item ^. label `shouldBe` "interactWithUser" item ^. kind `shouldBe` Just CiFunction @@ -275,10 +276,10 @@ main = hspec $ do describe "waitForDiagnosticsSource" $ it "works" $ runSession "hie" fullCaps "test/data" $ do openDoc "Error.hs" "haskell" - [diag] <- waitForDiagnosticsSource "ghcmod" + [diag] <- waitForDiagnosticsSource "bios" liftIO $ do diag ^. severity `shouldBe` Just DsError - diag ^. source `shouldBe` Just "ghcmod" + diag ^. source `shouldBe` Just "bios" describe "rename" $ it "works" $ runSession "hie" fullCaps "test/data" $ do