summaryrefslogtreecommitdiff
path: root/packages/astro/test/svelte-component.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/test/svelte-component.test.js')
-rw-r--r--packages/astro/test/svelte-component.test.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/astro/test/svelte-component.test.js b/packages/astro/test/svelte-component.test.js
index ef350af4d..edf6e3965 100644
--- a/packages/astro/test/svelte-component.test.js
+++ b/packages/astro/test/svelte-component.test.js
@@ -1,6 +1,6 @@
import { expect } from 'chai';
import cheerio from 'cheerio';
-import { loadFixture } from './test-utils.js';
+import { isWindows, loadFixture } from './test-utils.js';
describe('Svelte component', () => {
let fixture;
@@ -28,6 +28,8 @@ describe('Svelte component', () => {
});
});
+ if (isWindows) return;
+
describe('dev', () => {
let devServer;