diff options
author | 2023-06-14 11:55:37 +0200 | |
---|---|---|
committer | 2023-06-14 17:55:37 +0800 | |
commit | 3f1cb6b1a001fb03419a313f72c9f4846b890fe0 (patch) | |
tree | 2e63f1f43476c1e33a77374079bfa7aa1a684f16 /packages/astro/test/astro-scripts.test.js | |
parent | 06315a1fdea7b9f89878e2c89ba854bc638e9c79 (diff) | |
download | astro-3f1cb6b1a001fb03419a313f72c9f4846b890fe0.tar.gz astro-3f1cb6b1a001fb03419a313f72c9f4846b890fe0.tar.zst astro-3f1cb6b1a001fb03419a313f72c9f4846b890fe0.zip |
@astrojs/tailwind: simplify, upgrade & fix support for ts config file (#6724)
Co-authored-by: bluwy <bjornlu.dev@gmail.com>
Diffstat (limited to 'packages/astro/test/astro-scripts.test.js')
-rw-r--r-- | packages/astro/test/astro-scripts.test.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/astro/test/astro-scripts.test.js b/packages/astro/test/astro-scripts.test.js index da3fc7c66..ae2268d80 100644 --- a/packages/astro/test/astro-scripts.test.js +++ b/packages/astro/test/astro-scripts.test.js @@ -1,7 +1,6 @@ import { expect } from 'chai'; import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; -import { tailwind } from './fixtures/astro-scripts/deps.mjs'; describe('Scripts (hoisted and not)', () => { describe('Build', () => { @@ -141,7 +140,6 @@ describe('Scripts (hoisted and not)', () => { fixture = await loadFixture({ root: './fixtures/astro-scripts/', integrations: [ - tailwind(), { name: 'test-script-injection-with-injected-route', hooks: { |