Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tests: remove it.only #3394

Merged
merged 2 commits into from
May 18, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: skip failure until #3376 is revisited
  • Loading branch information
Nate Moore committed May 17, 2022
commit 6d289b0b685a4f53ff73544769b493c3a14b479e
3 changes: 2 additions & 1 deletion packages/astro/test/errors.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down