summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/test/alias.test.js2
-rw-r--r--packages/astro/test/errors.test.js3
2 files changed, 3 insertions, 2 deletions
diff --git a/packages/astro/test/alias.test.js b/packages/astro/test/alias.test.js
index de0a1de4f..82b05413a 100644
--- a/packages/astro/test/alias.test.js
+++ b/packages/astro/test/alias.test.js
@@ -24,7 +24,7 @@ describe('Aliases', () => {
await devServer.stop();
});
- it.only('can load client components', async () => {
+ it('can load client components', async () => {
const html = await fixture.fetch('/').then((res) => res.text());
const $ = cheerio.load(html);
diff --git a/packages/astro/test/errors.test.js b/packages/astro/test/errors.test.js
index 3f1b2b2e8..0bf7daaa5 100644
--- a/packages/astro/test/errors.test.js
+++ b/packages/astro/test/errors.test.js
@@ -43,7 +43,8 @@ describe('Error display', () => {
await devServer.stop();
});
- it('Errors recover when fixed', async () => {
+ // Skip until https://github.com/withastro/astro/pull/3376 is revisited
+ it.skip('Errors recover when fixed', async () => {
let html = await fixture.fetch('/svelte-syntax-error').then((res) => res.text());
// 1. Verify an error message is being shown.