mirror of
https://github.com/withastro/astro.git
synced 2025-04-07 23:41:43 -05:00
[ci] format
This commit is contained in:
parent
382f5db9a9
commit
51d2a1acba
1 changed files with 6 additions and 2 deletions
|
@ -30,7 +30,9 @@ describe('Config', () => {
|
|||
it('xslURL: Includes xml-stylesheet', async () => {
|
||||
const indexXml = await fixture.readFile('/sitemap-index.xml');
|
||||
assert.ok(
|
||||
indexXml.includes('<?xml-stylesheet type="text/xsl" href="http://example.com/sitemap.xsl"?>'),
|
||||
indexXml.includes(
|
||||
'<?xml-stylesheet type="text/xsl" href="http://example.com/sitemap.xsl"?>',
|
||||
),
|
||||
indexXml,
|
||||
);
|
||||
|
||||
|
@ -65,7 +67,9 @@ describe('Config', () => {
|
|||
it('xslURL: Includes xml-stylesheet', async () => {
|
||||
const indexXml = await fixture.readFile('/client/sitemap-index.xml');
|
||||
assert.ok(
|
||||
indexXml.includes('<?xml-stylesheet type="text/xsl" href="http://example.com/sitemap.xsl"?>'),
|
||||
indexXml.includes(
|
||||
'<?xml-stylesheet type="text/xsl" href="http://example.com/sitemap.xsl"?>',
|
||||
),
|
||||
indexXml,
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue