From d80d1d27c3a5dcea6f341e0bc29653acfde6b5ea Mon Sep 17 00:00:00 2001 From: Sam Light Date: Sun, 30 Mar 2025 22:25:24 +0100 Subject: Setup some basic tests --- tests/Feature/ManifestTest.php | 7 +++++++ tests/Pest.php | 17 +++++++++++++++++ tests/TestCase.php | 21 +++++++++++++++++++++ tests/Unit/ManifestParserTest.php | 11 +++++++++++ 4 files changed, 56 insertions(+) create mode 100644 tests/Feature/ManifestTest.php create mode 100644 tests/Pest.php create mode 100644 tests/TestCase.php create mode 100644 tests/Unit/ManifestParserTest.php (limited to 'tests') diff --git a/tests/Feature/ManifestTest.php b/tests/Feature/ManifestTest.php new file mode 100644 index 0000000..a9e1108 --- /dev/null +++ b/tests/Feature/ManifestTest.php @@ -0,0 +1,7 @@ +throwsNoExceptions(); diff --git a/tests/Pest.php b/tests/Pest.php new file mode 100644 index 0000000..a761fb0 --- /dev/null +++ b/tests/Pest.php @@ -0,0 +1,17 @@ +extend(TestCase::class) + ->in('Feature'); diff --git a/tests/TestCase.php b/tests/TestCase.php new file mode 100644 index 0000000..584d026 --- /dev/null +++ b/tests/TestCase.php @@ -0,0 +1,21 @@ +parse($data); + + expect($result)->toMatchArray(['main.js' => 'main.testing.js']); +}); -- cgit v1.2.3