packages feed

qute-syntax-0.1.0: test/Main.hs

-- SPDX-FileCopyrightText: 2025 Sören Tempel <soeren+git@soeren-tempel.net>
--
-- SPDX-License-Identifier: GPL-3.0-only

module Main (main) where

import Golden
import Parser
import Test.Tasty
import Types

main :: IO ()
main = defaultMain tests

tests :: TestTree
tests = testGroup "Tests" [mkParser, goldenTests, typesTests]