discourse/plugins/automation/spec/system/new_automation_spec.rb
Jarek Radosz 587264f9d2
DEV: Remove extraneous spec code (#29386)
namely `js: true`, requiring `rails_helper`, and default `freeze_time` args
2024-10-24 14:15:32 +02:00

23 lines
532 B
Ruby

# frozen_string_literal: true
describe "DiscourseAutomation | New automation", type: :system do
fab!(:admin)
before do
SiteSetting.discourse_automation_enabled = true
sign_in(admin)
end
let(:new_automation_page) { PageObjects::Pages::NewAutomation.new }
context "when a script is clicked" do
it "navigates to automation edit route" do
new_automation_page.visit
find(".admin-section-landing-item__content", match: :first).click
expect(page).to have_css(".scriptables")
end
end
end