Skip to content

Commit

Permalink
skip test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
gaarf committed May 26, 2022
1 parent 7fa5648 commit e6974a1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/kit/test/apps/basics/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2584,9 +2584,13 @@ test.describe.parallel('Static files', () => {
expect(response.status()).toBe(404);
});

test('Serves symlinked asset', async ({ request }) => {
const response = await request.get('/symlinked/asset.css');
expect(response.status()).toBe(200);
test.describe('Symlinked asset', () => {
test.skip(({ userAgent }) => userAgent.includes('Windows'));

test('is served', async ({ request }) => {
const response = await request.get('/symlinked/asset.css');
expect(response.status()).toBe(200);
});
});
});

Expand Down

0 comments on commit e6974a1

Please sign in to comment.