Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

11.0.4 #738

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading