Skip to content

Commit ab2edcf

Browse files
committed
test: optimize jsr artifact test
1 parent 61c0ed1 commit ab2edcf

File tree

4 files changed

+66
-21
lines changed

4 files changed

+66
-21
lines changed

package-lock.json

+50-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@
115115
"esbuild-plugin-utils": "^0.1.0",
116116
"fs-extra": "^11.2.0",
117117
"globby": "^14.0.2",
118+
"jsr": "^0.13.2",
118119
"madge": "^8.0.0",
119120
"minimist": "^1.2.8",
120121
"node-fetch-native": "^1.6.4",

scripts/build-jsr.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const pkgJson = JSON.parse(
2121
)
2222

2323
fs.writeFileSync(
24-
path.resolve(cwd, 'jsr.json'),
24+
path.resolve(root, 'jsr.json'),
2525
JSON.stringify(
2626
{
2727
name: '@zx/zx',

test/it/build-jsr.test.js

+14-17
Original file line numberDiff line numberDiff line change
@@ -17,39 +17,36 @@ import { describe, before, after, it } from 'node:test'
1717

1818
const __dirname = path.dirname(new URL(import.meta.url).pathname)
1919
const root = path.resolve(__dirname, '../../')
20-
const pkgJson = JSON.parse(
21-
fs.readFileSync(path.resolve(root, 'package.json'), 'utf-8')
22-
)
2320

24-
describe('jsr artefact', () => {
21+
describe('jsr artifact', () => {
2522
let tmp
2623
let t$
2724

2825
before(async () => {
2926
tmp = tempdir()
3027
t$ = $({ cwd: tmp, quiet: true })
31-
path.resolve(tmp, 'node_modules/zx')
32-
await fs.outputJSON(path.resolve(tmp, 'package.json'), pkgJson)
33-
34-
await t$`npm i`
3528

3629
// copy all for jsr publish
3730
await Promise.all(
38-
['src/', 'tsconfig.json', 'LICENSE', 'scripts/build-jsr.mjs'].map(
39-
async (filepath) => {
40-
return await fs.copy(
41-
path.resolve(path.join(root, filepath)),
42-
path.resolve(path.join(tmp, filepath))
43-
)
44-
}
31+
[
32+
'src/',
33+
'tsconfig.json',
34+
'LICENSE',
35+
'scripts/build-jsr.mjs',
36+
'package.json',
37+
].map((filepath) =>
38+
fs.copy(
39+
path.resolve(path.join(root, filepath)),
40+
path.resolve(path.join(tmp, filepath))
41+
)
4542
)
4643
)
44+
await t$`ln -s ${path.resolve(root, 'node_modules')} ${path.resolve(tmp, 'node_modules')}`
4745
})
48-
4946
after(() => fs.remove(tmp))
5047

5148
it('publish --dry-run --allow-dirty`', async () => {
5249
await t$`node scripts/build-jsr.mjs`
53-
await t$`npx jsr publish --dry-run --allow-dirty`
50+
await t$({ quiet: false })`jsr publish --dry-run --allow-dirty`
5451
})
5552
})

0 commit comments

Comments
 (0)