1
1
mirror of https://github.com/github/semantic.git synced 2024-12-18 20:31:55 +03:00
semantic/semantic-tsx/test/Test.hs

20 lines
628 B
Haskell
Raw Normal View History

2020-02-04 21:58:34 +03:00
{-# LANGUAGE DisambiguateRecordFields, OverloadedStrings, TypeApplications #-}
module Main (main) where
2020-02-07 00:30:44 +03:00
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
2020-02-04 21:58:34 +03:00
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
2020-02-04 21:58:34 +03:00
tests :: [TestTree] -> TestTree
tests = testGroup "tree-sitter-tsx corpus tests"