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

DEP Update deps to specify new auto-scaffolded has-one field #101

Merged
merged 1 commit into from
Jan 8, 2024
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: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
],
"require": {
"php": "^8.1",
"silverstripe/framework": "^5",
"silverstripe/admin": "^2"
"silverstripe/framework": "^5.2",
"silverstripe/admin": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
Expand Down
4 changes: 3 additions & 1 deletion tests/behat/features/create-taxonomies.feature
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ Feature: Create taxonomies
Then I should see the "li.current a.active[title='Taxonomy Terms']" element
When I press the "Add Taxonomy Term" button
And I fill in "Name" with "My taxonomy term"
And I select "My taxonomy type" from "Type"
And I fill in "Form_ItemEditForm_TypeID__input" with "My taxonomy type"
And I wait for 3 seconds
And I press the "Enter" key globally
And I press the "Create" button
When I follow "Taxonomy Terms"
Then I should see "My taxonomy term"
Expand Down