Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / tests / src / Functional / EnsureDevelWebProfilerWorks.php
diff --git a/web/modules/contrib/metatag/tests/src/Functional/EnsureDevelWebProfilerWorks.php b/web/modules/contrib/metatag/tests/src/Functional/EnsureDevelWebProfilerWorks.php
new file mode 100644 (file)
index 0000000..654f1bf
--- /dev/null
@@ -0,0 +1,36 @@
+<?php
+
+namespace Drupal\Tests\metatag\Functional;
+
+/**
+ * Verify that enabling WebProfiler don't cause the site to blow up.
+ *
+ * @group metatag
+ */
+class EnsureDevelWebProfilerWorks extends EnsureDevelWorks {
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $modules = [
+    // Modules for core functionality.
+    'node',
+    'field',
+    'field_ui',
+    'user',
+
+    // Contrib dependencies.
+    'token',
+
+    // This module.
+    'metatag',
+
+    // Use the custom route to verify the site works.
+    'metatag_test_custom_route',
+
+    // The modules to test.
+    'devel',
+    'webprofiler',
+  ];
+
+}