From b665c128ba6c650056305d7596d850c4aff2b59e Mon Sep 17 00:00:00 2001 From: Sam Light Date: Mon, 31 Mar 2025 20:00:49 +0100 Subject: Manifest parser test improvements --- tests/Unit/ManifestParserTest.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'tests/Unit/ManifestParserTest.php') diff --git a/tests/Unit/ManifestParserTest.php b/tests/Unit/ManifestParserTest.php index fe88daa..f5ca734 100644 --- a/tests/Unit/ManifestParserTest.php +++ b/tests/Unit/ManifestParserTest.php @@ -2,10 +2,16 @@ use Lightscale\LaralightAssets\JsonManifestParser; -it('parses json', function() { - $data = '{"main.js": "main.testing.js"}'; - $parser = new JsonManifestParser; - $result = $parser->parse($data); +describe('JsonManifestParser', function() { + it('instantiates', function() { + new JsonManifestParser; + })->throwsNoExceptions(); - expect($result)->toMatchArray(['main.js' => 'main.testing.js']); + it('parses json', function() { + $data = '{"main.js": "main.testing.js"}'; + $parser = new JsonManifestParser; + $result = $parser->parse($data); + + expect($result)->toMatchArray(['main.js' => 'main.testing.js']); + }); }); -- cgit v1.2.3