Skip to content

Commit

Permalink
Merge pull request #730 from localgovdrupal/3.x
Browse files Browse the repository at this point in the history
release 3.0.7
  • Loading branch information
stephen-cox authored Jun 19, 2024
2 parents d2ce34c + 9603d0a commit 8108629
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"Users can't reference unpublished content even when they have access to it. See https://www.drupal.org/project/drupal/issues/2845144": "https://www.drupal.org/files/issues/2024-02-13/2845144-87.patch"
},
"drupal/preview_link": {
"Automatically populating multiple preview link entities #3439968": "https://www.drupal.org/files/issues/2024-05-22/3439968-4.diff",
"Add a 'copy to clipboard' feature for preview_link": "https://www.drupal.org/files/issues/2024-05-28/3449121-9.patch"
},
"drupal/redirect": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,22 @@ class ContentLockTest extends BrowserTestBase {
'localgov_content_lock',
];

/**
* Set up tests.
*/
protected function setUp(): void {
parent::setUp();

// Use Claro for testing as there are problems with the Gin theme.
// See https://github.com/localgovdrupal/localgov/issues/731
$this->assertTrue(\Drupal::service('theme_installer')->install(['claro']));
$this->container->get('config.factory')
->getEditable('system.theme')
->set('default', 'claro')
->set('admin', 'claro')
->save();
}

/**
* Test content lock configuration.
*/
Expand Down

0 comments on commit 8108629

Please sign in to comment.