Skip to content

Commit

Permalink
media-object-layout merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
sikhote committed Dec 10, 2024
1 parent b3351c4 commit 2327cd7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/mediaObject/__tests__/CdrMediaObject.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { markRaw } from 'vue';
import { mount } from '../../../../test/vue-jest-style-workaround.js';
import CdrMediaObject from '../CdrMediaObject.vue';
import CdrSurface from '../../surface/CdrSurface.vue';

const CdrSurfaceRaw = markRaw(CdrSurface);

export const examples = [
{
label: 'default: media position left, media width 1fr, media height auto, align start',
Expand Down Expand Up @@ -81,7 +84,7 @@ export const examples = [
label: 'pass down props to Layout and Surface',
props: {
background: 'brand-spruce',
as: CdrSurface,
as: CdrSurfaceRaw,
},
},
];
Expand Down

0 comments on commit 2327cd7

Please sign in to comment.