Skip to content

Commit

Permalink
chore: use dataTestId prop
Browse files Browse the repository at this point in the history
This is a hotfix and should be undone as soon as possible. Relates back
to the issue around 'data-testid' prop not getting passed down to
component.
  • Loading branch information
luqven committed Jul 8, 2021
1 parent 801b53b commit c5ce9d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/simple/simple.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<template>
<div>
<h2>Simple</h2>
<ix-img src="examples/pione.jpg" sizes="20vw" data-testid="simple-fluid" />
<ix-img src="examples/pione.jpg" sizes="20vw" dataTestId="simple-fluid" />
<h2>Fixed</h2>
<ix-img
src="examples/pione.jpg"
width="100"
fixed
data-testid="simple-fixed-width"
dataTestId="simple-fixed-width"
/>
<h2>Picture</h2>
<div data-testid="simple-picture">
Expand Down

0 comments on commit c5ce9d3

Please sign in to comment.