Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUMP] Update dependency @1024pix/ember-testing-library to v2 (admin) #9302

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
218 changes: 202 additions & 16 deletions admin/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"devDependencies": {
"@1024pix/ember-api-actions": "^1.1.0",
"@1024pix/ember-cli-notifications": "^8.0.2",
"@1024pix/ember-testing-library": "^1.1.0",
"@1024pix/ember-testing-library": "^2.0.7",
"@1024pix/eslint-config": "^1.3.7",
"@1024pix/pix-ui": "^46.12.6",
"@1024pix/stylelint-config": "^5.1.16",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,8 @@ module('Integration | Component | complementary-certifications/attach-badges/bad
assert
.dom(
screen.getByRole('alert', {
value: {
text: 'Seul un profil cible comportant au moins un résultat thématique certifiant peut être rattaché à une certification complémentaire. Le profil cible que vous avez sélectionné ne comporte pas de résultat thématique certifiant. Veuillez le modifier puis rafraîchir cette page ou bien sélectionner un autre profil cible.',
},
value:
'Seul un profil cible comportant au moins un résultat thématique certifiant peut être rattaché à une certification complémentaire. Le profil cible que vous avez sélectionné ne comporte pas de résultat thématique certifiant. Veuillez le modifier puis rafraîchir cette page ou bien sélectionner un autre profil cible.',
}),
)
.exists();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module(
await fillIn(input, '3');

// then
assert.dom(await screen.findByRole('progressbar', { value: { text: 'Recherche en cours...' } })).exists();
assert.dom(await screen.findByRole('progressbar', { value: 'Recherche en cours...' })).exists();
});

test('it should still display the searchbar if the search fails', async function (assert) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ module(
/>`);

// then
assert.dom(screen.getByRole('progressbar', { value: { text: 'Recherche en cours...' } })).exists();
assert.dom(screen.getByRole('progressbar', { value: 'Recherche en cours...' })).exists();
});
});

Expand Down