diff --git a/Tests/Unit/ResourceMatcherTest.php b/Tests/Unit/ResourceMatcherTest.php
index 156c8e8..91c2541 100644
--- a/Tests/Unit/ResourceMatcherTest.php
+++ b/Tests/Unit/ResourceMatcherTest.php
@@ -29,6 +29,16 @@ public function matchDataProvider()
['https://www.example.com/myfile.js'],
[]
],
+ 'simple script tag with parameter' => [
+ '',
+ ['https://www.example.com/myfile.js?foo'],
+ []
+ ],
+ 'simple script tag with parameter and value' => [
+ '',
+ ['https://www.example.com/myfile.js?foo=bar'],
+ []
+ ],
'multiple script tags' => [
'',
['https://www.example.com/myfile.js', '/myfile.js'],