From 554135b836ca1f87fc07b6741415b3dd125d2ac2 Mon Sep 17 00:00:00 2001 From: dominikg Date: Thu, 25 May 2023 17:51:59 +0200 Subject: [PATCH] fix: update selftest --- tests/_selftest.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/_selftest.ts b/tests/_selftest.ts index 1a41c1e0..023f54b6 100644 --- a/tests/_selftest.ts +++ b/tests/_selftest.ts @@ -6,7 +6,7 @@ import { RunOptions } from '../types' export async function test(options: RunOptions) { await runInRepo({ ...options, - repo: 'dominikg/svelte-ecosystem-ci', + repo: 'sveltejs/svelte-ecosystem-ci', build: async () => { const dir = path.resolve(options.workspace, 'svelte-ecosystem-ci') const pkgFile = path.join(dir, 'package.json') @@ -17,7 +17,7 @@ export async function test(options: RunOptions) { ) } pkg.scripts.selftestscript = - "[ -f ../../svelte/index.mjs ] || (echo 'svelte build failed' && exit 1)" + "[ -f ../../svelte/compiler.cjs ] || (echo 'svelte build failed' && exit 1)" await fs.promises.writeFile( pkgFile, JSON.stringify(pkg, null, 2),