Skip to content

Commit

Permalink
11.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pookmish authored Oct 24, 2023
1 parent 029be2b commit 78a15a5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Stanford Profile

11.0.4
-------------------------------------------------------------------------------
- D8CORE-7051 Use display field copy instead of token fields

11.0.3
-------------------------------------------------------------------------------
- Next site settings and config ignores (#735)
Expand Down
2 changes: 1 addition & 1 deletion stanford_profile.info.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 'Stanford Profile'
description: 'Jumpstart Website Profile'
version: 11.0.3
version: 11.0.4
type: profile
project: Stanford
core_version_requirement: ^9 || ^10
Expand Down
2 changes: 1 addition & 1 deletion tests/codeception/acceptance/Content/SearchBlockCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function testHideSearchBlock(AcceptanceTester $I) {
$I->fillField('Site Owner Contact (value 1)', $this->faker->email);
$I->fillField('Technical Contact (value 1)', $this->faker->email);
$I->fillField('Accessibility Contact (value 1)', $this->faker->email);
$I->selectOption('Organization', $org_term->id());
$I->selectOption('[name="su_site_org[0][target_id]"]', $org_term->id());
$I->click('Save');
// The settings might have been created or updated.
$I->see('Site Settings has been', '.messages-list');
Expand Down
6 changes: 3 additions & 3 deletions tests/codeception/acceptance/SystemSiteConfigCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function testBasicSiteSettings(AcceptanceTester $I) {
$I->fillField('Site Owner Contact (value 1)', $this->faker->email);
$I->fillField('Technical Contact (value 1)', $this->faker->email);
$I->fillField('Accessibility Contact (value 1)', $this->faker->email);
$I->selectOption('Organization', $org_term->id());
$I->selectOption('[name="su_site_org[0][target_id]"]', $org_term->id());
$I->click('Save');
$I->canSee('Site Settings has been', '.messages-list');

Expand Down Expand Up @@ -104,7 +104,7 @@ public function testSitePages(AcceptanceTester $I) {
$I->fillField('Site Owner Contact (value 1)', $this->faker->email);
$I->fillField('Technical Contact (value 1)', $this->faker->email);
$I->fillField('Accessibility Contact (value 1)', $this->faker->email);
$I->selectOption('Organization', $org_term->id());
$I->selectOption('[name="su_site_org[0][target_id]"]', $org_term->id());
$I->click('Save');
$I->canSee('Site Settings has been', '.messages-list');

Expand Down Expand Up @@ -145,7 +145,7 @@ protected function experimentalTestGoogleAnalytics(AcceptanceTester $I) {
$I->fillField('Site Owner Contact (value 1)', $this->faker->email);
$I->fillField('Technical Contact (value 1)', $this->faker->email);
$I->fillField('Accessibility Contact (value 1)', $this->faker->email);
$I->selectOption('Org Code', $org_term->id());
$I->selectOption('[name="su_site_org[0][target_id]"]', $org_term->id());

$I->click('Save');
$I->canSee('1 error has been found: Google Analytics Account');
Expand Down
2 changes: 1 addition & 1 deletion tests/codeception/functional/Contrib/ExtLinkCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function testExtLink(FunctionalTester $I) {
$I->fillField('Site Owner Contact (value 1)', $this->faker->email);
$I->fillField('Technical Contact (value 1)', $this->faker->email);
$I->fillField('Accessibility Contact (value 1)', $this->faker->email);
$I->selectOption('Org Code', $org_term->id());
$I->selectOption('.js-form-item-su-site-org-0-target-id select.simpler-select', $org_term->id());
$I->click('Save');
$I->canSee('Site Settings has been', '.messages-list');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function testDropdownMenus(FunctionalTester $I) {
$I->fillField('Site Owner Contact (value 1)', $this->faker->email);
$I->fillField('Technical Contact (value 1)', $this->faker->email);
$I->fillField('Accessibility Contact (value 1)', $this->faker->email);
$I->selectOption('Org Code', $org_term->id());
$I->selectOption('.js-form-item-su-site-org-0-target-id select.simpler-select', $org_term->id());
$I->click('Save');
$I->canSee('Site Settings has been', '.messages-list');

Expand Down

0 comments on commit 78a15a5

Please sign in to comment.