We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa5648 commit f8e55e6Copy full SHA for f8e55e6
packages/kit/test/apps/basics/test/test.js
@@ -2584,9 +2584,13 @@ test.describe.parallel('Static files', () => {
2584
expect(response.status()).toBe(404);
2585
});
2586
2587
- test('Serves symlinked asset', async ({ request }) => {
2588
- const response = await request.get('/symlinked/asset.css');
2589
- expect(response.status()).toBe(200);
+ test.describe('Symlinked asset', () => {
+ test.skip(({ userAgent }) => userAgent.includes('Windows'));
+
2590
+ test('is served', async ({ request }) => {
2591
+ const response = await request.get('/symlinked/asset.css');
2592
+ expect(response.status()).toBe(200);
2593
+ });
2594
2595
2596
0 commit comments