Skip to content

Commit

Permalink
UPDATE codecov test
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaFM committed Oct 21, 2024
1 parent 25e7f37 commit d83f554
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/Molecules/ApiError.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe('ApiError.vue', () => {

const errorMsg = wrapper.find('.api-error-msg');
expect(errorMsg.exists()).toBe(true);
expect(errorMsg.text())
.toBe('Looks like the server is taking to long to respond, please try again later.');
expect(errorMsg.text()).toBe('Looks like the server is taking to long to respond,' +
'please try again later.');
});
});
2 changes: 1 addition & 1 deletion components/Molecules/ApiError.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<v-img :src="illustration" contain max-height="150" />
<h3 class="api-error-msg">
Looks like the server is taking to long to respond, please try again later.
Looks like the server is taking to long to respond,please try again later.
</h3>
</div>
</template>
Expand Down

0 comments on commit d83f554

Please sign in to comment.