Skip to content

Commit

Permalink
fix: with svelte5 released, and vps 5 in prerelease reenable overrides (
Browse files Browse the repository at this point in the history
#338)

* fix: with svelte5 released, and vps 5 in prerelease reenable overrides

* chore: move lint and check after test call so if they fail we at least have the test results

* temporary use fix branch of kit repo

* switch sveltekit branch again

* fix: reenable svelte overrides now that all packages are aligned again
  • Loading branch information
dominikg authored Dec 2, 2024
1 parent 1f625ae commit 8ceca26
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/sveltekit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ export async function test(options: RunOptions) {
repo: 'sveltejs/kit',
branch: 'main',
overrides: {
// svelte: 'latest',
// '@sveltejs/vite-plugin-svelte': true,
// '@sveltejs/vite-plugin-svelte-inspector': true,
svelte: 'latest',
'@sveltejs/vite-plugin-svelte': true,
'@sveltejs/vite-plugin-svelte-inspector': true,
},
beforeTest: 'pnpm playwright install',
test: ['lint', 'check', 'test:vite-ecosystem-ci'],
beforeTest: 'pnpm playwright install chromium',
test: ['test:vite-ecosystem-ci', 'lint', 'check'],
})
}

0 comments on commit 8ceca26

Please sign in to comment.