From 8ceca2698d31e25006de1d7a49321afaaf73e679 Mon Sep 17 00:00:00 2001 From: "Dominik G." Date: Mon, 2 Dec 2024 11:14:42 +0100 Subject: [PATCH] fix: with svelte5 released, and vps 5 in prerelease reenable overrides (#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 --- tests/sveltekit.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/sveltekit.ts b/tests/sveltekit.ts index 37317f11..f66623ce 100755 --- a/tests/sveltekit.ts +++ b/tests/sveltekit.ts @@ -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'], }) }