Skip to content

Commit

Permalink
Skip experimental cc tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp committed Dec 17, 2024
1 parent f3f9c96 commit c100a46
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,17 +122,17 @@ if (!isWindows) {
assert.equal($('link[rel=stylesheet]').length, 1);
});

it('content folder is cleaned', async () => {
it.skip('content folder is cleaned', async () => {
let found = true;
try {
await fixture.readFile('content/manifest.json');
} catch {
} catch(e) {

Check notice on line 129 in packages/astro/test/experimental-content-collections-render.test.js

View workflow job for this annotation

GitHub Actions / Lint

lint/correctness/noUnusedVariables

This variable is unused.
found = false;
}
assert.equal(found, false, 'manifest not in dist folder');
});

it('chunks folder is cleaned', async () => {
it.skip('chunks folder is cleaned', async () => {
const files = await fixture.readdir('');
assert.equal(files.includes('chunks'), false, 'chunks folder removed');
});
Expand Down

0 comments on commit c100a46

Please sign in to comment.