mirror of https://github.com/docusealco/docuseal
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.
19 lines
535 B
19 lines
535 B
# frozen_string_literal: true
|
|
|
|
RSpec.describe 'PDF Signature Settings' do
|
|
let!(:account) { create(:account) }
|
|
let!(:user) { create(:user, account:) }
|
|
|
|
before do
|
|
sign_in(user)
|
|
visit settings_esign_path
|
|
end
|
|
|
|
it 'shows verify signed PDF page' do
|
|
expect(page).to have_content('PDF Signature')
|
|
expect(page).to have_content('Upload signed PDF file to validate its signature')
|
|
expect(page).to have_content('Verify Signed PDF')
|
|
expect(page).to have_content('Click to upload or drag and drop files')
|
|
end
|
|
end
|