Skip to content

Commit

Permalink
fix: update selftest
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikg committed May 25, 2023
1 parent f66b939 commit 554135b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/_selftest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand All @@ -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),
Expand Down

0 comments on commit 554135b

Please sign in to comment.