style: replace new-folder icon with remix/dsfr icon

This commit is contained in:
Colin Darie 2023-11-27 14:51:39 +01:00
parent 38bee3639d
commit adfeac02e7
No known key found for this signature in database
GPG key ID: 8C76CADD40253590
8 changed files with 24 additions and 17 deletions

View file

@ -30,7 +30,7 @@ describe 'Creating a new procedure', js: true do
# check archive
expect {
page.first(".archive-table .button").click
page.first(".archive-table .fr-btn").click
}.to have_enqueued_job(ArchiveCreationJob).with(procedure, an_instance_of(Archive), administrateur)
expect(page).to have_content("Votre demande a été prise en compte. Selon le nombre de dossiers, cela peut prendre de quelques minutes à plusieurs heures. Vous recevrez un courriel lorsque le fichier sera disponible.")
expect(Archive.first.month).not_to be_nil

View file

@ -206,7 +206,7 @@ describe 'Instructing a dossier:', js: true do
end
scenario 'download' do
expect {
page.first(".archive-table .button").click
page.first(".archive-table .fr-btn").click
}.to have_enqueued_job(ArchiveCreationJob).with(procedure, an_instance_of(Archive), instructeur)
expect(Archive.first.month).not_to be_nil
end