OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/spec/features/notifications/settings/my_notifications_settings_s...

17 lines
446 B

require 'rails_helper'
require_relative '../../users/notifications/shared_examples'
require 'support/pages/my/notifications'
describe "My notifications settings", type: :feature, js: true do
current_user { FactoryBot.create :user }
let(:settings_page) { Pages::My::Notifications.new(current_user) }
before do
settings_page.visit!
end
it_behaves_like 'notification settings workflow' do
let(:user) { current_user }
end
end