mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
[ci] format
This commit is contained in:
parent
254a8f3749
commit
1c8524505e
2 changed files with 5 additions and 13 deletions
|
@ -43,12 +43,8 @@ describe('Tailwind', () => {
|
|||
);
|
||||
|
||||
// custom theme colors were included
|
||||
expect(bundledCSS, 'includes custom theme colors').to.match(
|
||||
/\.text-midnight{/
|
||||
);
|
||||
expect(bundledCSS, 'includes custom theme colors').to.match(
|
||||
/\.bg-dawn{/
|
||||
);
|
||||
expect(bundledCSS, 'includes custom theme colors').to.match(/\.text-midnight{/);
|
||||
expect(bundledCSS, 'includes custom theme colors').to.match(/\.bg-dawn{/);
|
||||
});
|
||||
|
||||
it('maintains classes in HTML', async () => {
|
||||
|
@ -108,12 +104,8 @@ describe('Tailwind', () => {
|
|||
expect(text, 'supports arbitrary value classes').to.match(/.font-\\[900\\]/);
|
||||
|
||||
// custom theme colors were included
|
||||
expect(text, 'includes custom theme colors').to.match(
|
||||
/\.text-midnight/
|
||||
);
|
||||
expect(text, 'includes custom theme colors').to.match(
|
||||
/\.bg-dawn/
|
||||
);
|
||||
expect(text, 'includes custom theme colors').to.match(/\.text-midnight/);
|
||||
expect(text, 'includes custom theme colors').to.match(/\.bg-dawn/);
|
||||
});
|
||||
|
||||
it('maintains classes in HTML', async () => {
|
||||
|
|
|
@ -14,7 +14,7 @@ function getDefaultTailwindConfig(srcUrl: URL): TailwindConfig {
|
|||
},
|
||||
plugins: [],
|
||||
content: [path.join(fileURLToPath(srcUrl), `**`, `*.{astro,html,js,jsx,svelte,ts,tsx,vue}`)],
|
||||
presets: undefined // enable Tailwind's default preset
|
||||
presets: undefined, // enable Tailwind's default preset
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue