Files
growstuff/spec/features/admin/admin_spec.rb
Daniel O'Connor ea5486ffe1 Swap percy over (#2986)
* Swap percy over

* Swap require over

* Change API

* Update package.json
2022-03-27 11:44:18 +10:30

14 lines
294 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe "forums", js: true do
context 'signed in admin' do
include_context 'signed in admin'
it "navigating to forum admin with js" do
visit admin_path
page.percy_snapshot(page, name: 'Admin page')
end
end
end