a11yist/test/system/admin/backups_test.rb
david 338447763f
All checks were successful
/ Run tests (push) Successful in 2m24s
/ Run system tests (push) Successful in 2m35s
/ Build, push and deploy image (push) Successful in 1m43s
fix/skip system tests
2024-09-11 22:43:26 +02:00

13 lines
248 B
Ruby

# frozen_string_literal: true
require "application_system_test_case"
module Admin
class BackupsTest < ApplicationSystemTestCase
test "should create backup" do
visit admin_backup_url
assert(page.body.size > 0)
end
end
end