Reexport modules via cabal
[lsp-test.git] / README.md
1 # haskell-lsp-test [![Build Status](https://travis-ci.com/Bubba/haskell-lsp-test.svg?branch=master)](https://travis-ci.com/Bubba/haskell-lsp-test)
2 This is the functional testing framework for [haskell-ide-engine](https://github.com/haskell/haskell-ide-engine), and potentially any other Language Server Protocol server.
3
4 ```haskell
5 runSession "session/root/dir" $ do
6   doc <- openDoc "foo.hs" "haskell"
7   
8   skipMany notification
9
10   symbols <- getDocumentSymbols doc
11 ```
12
13 ## Developing
14 To test make sure you have [haskell-ide-engine](https://github.com/haskell/haskell-ide-engine) installed.