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