Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ForkbombEu/didroom-components
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c67cc4480a3fe88615fd23a070253f6700774c8d
Choose a base ref
..
head repository: ForkbombEu/didroom-components
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: adc49559b98aeefb1d4c7e0ce583c73f7b223882
Choose a head ref
Original file line number Diff line number Diff line change
@@ -9,7 +9,13 @@ describe('d-credential-service', () => {
});
expect(page.root).toEqualHtml(`
<d-credential-service>
<div class="flex flex-col gap-2"></div>
<mock:shadow-root>
<d-list-item background="">
<div slot="organization">
<d-text class="!text-on-alt" size="s"></d-text>
</div>
</d-list-item>
</mock:shadow-root>
</d-credential-service>
`);
});
2 changes: 2 additions & 0 deletions src/components/d-list-item/test/d-list-item.spec.tsx
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@ describe('d-list-item', () => {
});
expect(page.root).toEqualHtml(`
<d-list-item>
<mock:shadow-root>
<div class="flex gap-3 items-center no-underline p-5 rounded-lg w-full">
<div class="flex flex-grow gap-3 items-start">
<d-avatar shape="square" size="l"></d-avatar>
@@ -19,6 +20,7 @@ describe('d-list-item', () => {
</div>
</div>
</div>
</mock:shadow-root>
</d-list-item>
`);
});
6 changes: 1 addition & 5 deletions src/components/vertical-stack/test/d-vertical-stack.spec.tsx
Original file line number Diff line number Diff line change
@@ -9,11 +9,7 @@ describe('d-vertical-stack', () => {
});
expect(page.root).toEqualHtml(`
<d-vertical-stack>
<mock:shadow-root>
<div class="flex flex-col gap-2">
<slot></slot>
</div>
</mock:shadow-root>
<div class="flex flex-col gap-2"></div>
</d-vertical-stack>
`);
});