Skip to content

Commit

Permalink
Merge pull request #351 from weni-ai/NEXUS-1617
Browse files Browse the repository at this point in the history
[NEXUS-1617] IC correction
  • Loading branch information
MarcusviniciusLsantos authored Jul 19, 2024
2 parents 821b324 + e0dea55 commit 44991ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ VueWrapper {
"_emitted": Object {
"input": Array [
Array [
null,
undefined,
],
],
},
"_emittedByOrder": Array [
Object {
"args": Array [
null,
undefined,
],
"name": "input",
},
Expand Down
6 changes: 3 additions & 3 deletions src/__tests__/components/shared/Messages.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ describe('Messages.vue', () => {
expect(wrapper.findAll('.messages .notification.is-danger').length).toBe(
1,
);
expect(
wrapper.find('.messages .notification.is-danger').element.textContent,
).toBe(text);
expect(wrapper.find('.messages .notification.is-danger').text()).toBe(
text,
);
});

test('check snapshot', () => {
Expand Down

0 comments on commit 44991ae

Please sign in to comment.