1
0
Fork 0

chore: Run unit tests from source

This commit is contained in:
joostdecock 2022-09-10 19:16:17 +02:00
parent ac4d134075
commit bdd5cb562e
125 changed files with 50 additions and 1100 deletions

View file

@ -33,18 +33,4 @@ let result
console.log(info)
}
// Also build a version that has all dependencies bundled
// This makes it easy to run tests
await esbuild
.build({
...options,
minify: false,
keepNames: true,
sourcemap: false,
outfile: 'tests/dist/index.mjs',
format: 'esm',
external: [],
})
.catch(() => process.exit(1))
})()