[ci] format
This commit is contained in:
parent
4c2bec681b
commit
22fae5211a
2 changed files with 6 additions and 8 deletions
|
@ -13,7 +13,7 @@ describe('View Transitions styles', () => {
|
||||||
|
|
||||||
after(async () => {
|
after(async () => {
|
||||||
await devServer.stop();
|
await devServer.stop();
|
||||||
})
|
});
|
||||||
|
|
||||||
it('style tag added for each instance of the component', async () => {
|
it('style tag added for each instance of the component', async () => {
|
||||||
let res = await fixture.fetch('/multiple');
|
let res = await fixture.fetch('/multiple');
|
||||||
|
|
|
@ -92,13 +92,11 @@ export const ComponentNode = createComponent({
|
||||||
// `result.propagators` has been moved to `result._metadata.propagators`
|
// `result.propagators` has been moved to `result._metadata.propagators`
|
||||||
// TODO: remove this fallback in the next markdoc integration major
|
// TODO: remove this fallback in the next markdoc integration major
|
||||||
const propagators = result._metadata.propagators || result.propagators;
|
const propagators = result._metadata.propagators || result.propagators;
|
||||||
propagators.add(
|
propagators.add({
|
||||||
{
|
|
||||||
init() {
|
init() {
|
||||||
return headAndContent;
|
return headAndContent;
|
||||||
},
|
},
|
||||||
}
|
});
|
||||||
);
|
|
||||||
|
|
||||||
return headAndContent;
|
return headAndContent;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue