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 f8e55e6 commit 375a159Copy full SHA for 375a159
packages/kit/test/apps/basics/test/test.js
@@ -2584,13 +2584,9 @@ test.describe.parallel('Static files', () => {
2584
expect(response.status()).toBe(404);
2585
});
2586
2587
- test.describe('Symlinked asset', () => {
2588
- test.skip(({ userAgent }) => userAgent.includes('Windows'));
2589
-
2590
- test('is served', async ({ request }) => {
2591
- const response = await request.get('/symlinked/asset.css');
2592
- expect(response.status()).toBe(200);
2593
- });
+ test('Serves symlinked asset', async ({ request }) => {
+ const response = await request.get('/symlinked/asset.css');
+ expect(response.status()).toBe(200);
2594
2595
2596
0 commit comments