@@ -16,7 +16,8 @@ function snapshotFilename(name: string) {
16
16
return `./__snapshots__/svelte-${ svelteMajor } /${ name } .txt` ;
17
17
}
18
18
19
- describe ( 'raw' , ( ) => {
19
+ // TODO remove .skip in this file once svelte5 output is considered stable
20
+ describe . skip ( 'raw' , ( ) => {
20
21
test ( 'does not have failed requests' , async ( ) => {
21
22
browserLogs . forEach ( ( msg ) => {
22
23
expect ( msg ) . not . toMatch ( '404' ) ;
@@ -88,7 +89,7 @@ describe('raw', () => {
88
89
89
90
// vitest prints a warning about obsolete snapshots during build tests, ignore it, they are used in dev tests.
90
91
// always regenerate snapshots with `pnpm test:serve import-queries -u` and check the diffs if they are correct
91
- describe . runIf ( isBuild ) ( 'snapshots not obsolete warning' , async ( ) => {
92
+ describe . skip . runIf ( isBuild ) ( 'snapshots not obsolete warning' , async ( ) => {
92
93
afterAll ( ( ) => {
93
94
console . log (
94
95
'Ignore the obsolete snapshot warnings for ssrLoadModule snapshots from vitest during test:build, they are used in test:serve'
@@ -99,7 +100,7 @@ describe.runIf(isBuild)('snapshots not obsolete warning', async () => {
99
100
} ) ;
100
101
} ) ;
101
102
102
- describe . runIf ( ! isBuild ) ( 'direct' , ( ) => {
103
+ describe . skip . runIf ( ! isBuild ) ( 'direct' , ( ) => {
103
104
test ( 'Dummy.svelte?direct&svelte&type=style&sourcemap&lang.css' , async ( ) => {
104
105
const response = await fetchFromPage (
105
106
'src/Dummy.svelte?direct&svelte&type=style&sourcemap&lang.css' ,
@@ -127,7 +128,7 @@ describe.runIf(!isBuild)('direct', () => {
127
128
} ) ;
128
129
} ) ;
129
130
130
- describe . runIf ( ! isBuild ) ( 'ssrLoadModule' , ( ) => {
131
+ describe . skip . runIf ( ! isBuild ) ( 'ssrLoadModule' , ( ) => {
131
132
let vite : ViteDevServer ;
132
133
let ssrLoadDummy ;
133
134
beforeAll ( async ( ) => {
0 commit comments