diff --git a/phpcs.xml b/phpcs.xml
index c03277e125eb6b4b473c3abdce79da23ab2c9d79..4bd1fae01565e382d908c4667ff36aa5bfe27dba 100644
--- a/phpcs.xml
+++ b/phpcs.xml
@@ -6,7 +6,6 @@
 	<file>.</file>
 	<exclude-pattern>/assets/build/</exclude-pattern>
 	<exclude-pattern>/node_modules/</exclude-pattern>
-	<exclude-pattern>/tests/*</exclude-pattern>
 
 	<!-- How to scan -->
 	<!-- Usage instructions: https://github.com/squizlabs/PHP_CodeSniffer/wiki/Usage -->
diff --git a/tests/test-class-external-permalinks-redux-block-editor.php b/tests/test-class-external-permalinks-redux-block-editor.php
new file mode 100644
index 0000000000000000000000000000000000000000..c563510e15bce73faf30d60e815dacd030c83539
--- /dev/null
+++ b/tests/test-class-external-permalinks-redux-block-editor.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Test block-editor integration.
+ *
+ * @pacakge External_Permalinks_Redux
+ */
+
+/**
+ * Class TestClassExternalPermalinksReduxBlockEditor.
+ *
+ * @coversDefaultClass External_Permalinks_Redux_Block_Editor
+ */
+class TestClassExternalPermalinksReduxBlockEditor extends WP_UnitTestCase {
+	/**
+	 * @covers ::register_meta()
+	 */
+	public function test_register_meta() {
+		$this->markTestIncomplete( 'This test has not been implemented.' );
+	}
+
+	/**
+	 * @covers ::allow_meta_updates()
+	 */
+	public function test_allow_meta_updates() {
+		$this->markTestIncomplete( 'This test has not been implemented.' );
+	}
+
+	/**
+	 * @covers ::enqueue()
+	 */
+	public function test_enqueue() {
+		$this->markTestIncomplete( 'This test has not been implemented.' );
+	}
+}