diff --git a/tests/src/Functional/PageListTest.php b/tests/src/Functional/PageListTest.php index 93f0e0a..b998b02 100644 --- a/tests/src/Functional/PageListTest.php +++ b/tests/src/Functional/PageListTest.php @@ -56,4 +56,15 @@ class PageListTest extends BrowserTestBase { $this->assertEquals([1], $nids); } + /** + * Ensure that the results are ordered by title. + */ + public function testResultsAreOrderedAlphabetically() { + // Given I have multiple nodes with different titles. + + // When I view the pages list. + + // Then I should see pages in the correct order. + } + }