mirror of
https://github.com/github/semantic.git
synced 2024-11-28 10:15:55 +03:00
20 lines
644 B
Haskell
20 lines
644 B
Haskell
{-# LANGUAGE DisambiguateRecordFields, OverloadedStrings, TypeApplications #-}
|
|
module Main (main) where
|
|
|
|
import qualified System.Path as Path
|
|
import Test.Tasty
|
|
import TreeSitter.TSX
|
|
import qualified TreeSitter.TSX.AST as Ts
|
|
import TreeSitter.Test.Helpers
|
|
import TreeSitter.Unmarshal
|
|
|
|
main :: IO ()
|
|
main
|
|
= readCorpusFiles (Path.relDir "tree-sitter-tsx/vendor/tree-sitter-typescript/tsx/corpus")
|
|
>>= traverse (testCorpus parse)
|
|
>>= defaultMain . tests
|
|
where parse = parseByteString @Ts.Program @() tree_sitter_tsx
|
|
|
|
tests :: [TestTree] -> TestTree
|
|
tests = testGroup "tree-sitter-tsx corpus tests"
|