mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-07 21:55:20 +08:00
fix failing navigation spec
This commit is contained in:
parent
930e3a86dc
commit
61be762b76
2 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@ Feature: Addon versions
|
|||
| email | password | password_confirmation | full_name | initials |
|
||||
| admin@myorg.com | mypassword1234 | mypassword1234 | Karli Novak | KN |
|
||||
And "admin@myorg.com" is in "BioSistemika Process" team as a "admin"
|
||||
And is signed in with "admin@myorg.com", "mypassword1234"
|
||||
And "admin@myorg.com" is signed in with "mypassword1234"
|
||||
|
||||
@javascript
|
||||
Scenario: Open the sciNote addons modal
|
||||
|
|
|
@ -107,12 +107,12 @@ describe User, type: :model do
|
|||
expect(table.macro).to eq(:has_many)
|
||||
end
|
||||
|
||||
it 'have many repositories' do
|
||||
it 'have many modified results' do
|
||||
table = User.reflect_on_association(:modified_results)
|
||||
expect(table.macro).to eq(:has_many)
|
||||
end
|
||||
|
||||
it 'have many repositories' do
|
||||
it 'have many modified steps' do
|
||||
table = User.reflect_on_association(:modified_steps)
|
||||
expect(table.macro).to eq(:has_many)
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue