[ci] format
This commit is contained in:
parent
9b0114c7d3
commit
5121740de7
2 changed files with 16 additions and 15 deletions
|
@ -40,9 +40,9 @@ describe('Integration API', () => {
|
||||||
{
|
{
|
||||||
name: 'test',
|
name: 'test',
|
||||||
hooks: {
|
hooks: {
|
||||||
"astro:config:setup": ({ updateConfig }) => {
|
'astro:config:setup': ({ updateConfig }) => {
|
||||||
updateConfig({ site });
|
updateConfig({ site });
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -62,19 +62,21 @@ describe('Integration API', () => {
|
||||||
{
|
{
|
||||||
name: 'test',
|
name: 'test',
|
||||||
hooks: {
|
hooks: {
|
||||||
"astro:config:setup": ({ updateConfig }) => {
|
'astro:config:setup': ({ updateConfig }) => {
|
||||||
updateConfig({
|
updateConfig({
|
||||||
integrations: [{
|
integrations: [
|
||||||
|
{
|
||||||
name: 'dynamically-added',
|
name: 'dynamically-added',
|
||||||
hooks: {
|
hooks: {
|
||||||
// eslint-disable-next-line @typescript-eslint/no-shadow
|
// eslint-disable-next-line @typescript-eslint/no-shadow
|
||||||
"astro:config:setup": ({ updateConfig }) => {
|
'astro:config:setup': ({ updateConfig }) => {
|
||||||
updateConfig({ site });
|
updateConfig({ site });
|
||||||
}
|
|
||||||
},
|
},
|
||||||
}],
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -84,7 +86,6 @@ describe('Integration API', () => {
|
||||||
expect(updatedSettings.config.site).to.equal(site);
|
expect(updatedSettings.config.site).to.equal(site);
|
||||||
expect(updatedSettings.config.integrations.length).to.equal(2);
|
expect(updatedSettings.config.integrations.length).to.equal(2);
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('Astro feature map', function () {
|
describe('Astro feature map', function () {
|
||||||
|
|
Loading…
Reference in a new issue