@@ -11,7 +11,7 @@ describe('ESM in main field', { concurrency: true }, () => {
11
11
before ( ( ) => tmpdir . refresh ( ) ) ;
12
12
13
13
it ( 'should handle fully-specified relative path without any warning' , async ( ) => {
14
- const cwd = path . join ( tmpdir . path , Math . random ( ) . toString ( ) ) ;
14
+ const cwd = tmpdir . resolve ( Math . random ( ) . toString ( ) ) ;
15
15
const pkgPath = path . join ( cwd , './node_modules/pkg/' ) ;
16
16
await mkdir ( pkgPath , { recursive : true } ) ;
17
17
await writeFile ( path . join ( pkgPath , './index.js' ) , 'console.log("Hello World!")' ) ;
@@ -29,7 +29,7 @@ describe('ESM in main field', { concurrency: true }, () => {
29
29
assert . strictEqual ( code , 0 ) ;
30
30
} ) ;
31
31
it ( 'should handle fully-specified absolute path without any warning' , async ( ) => {
32
- const cwd = path . join ( tmpdir . path , Math . random ( ) . toString ( ) ) ;
32
+ const cwd = tmpdir . resolve ( Math . random ( ) . toString ( ) ) ;
33
33
const pkgPath = path . join ( cwd , './node_modules/pkg/' ) ;
34
34
await mkdir ( pkgPath , { recursive : true } ) ;
35
35
await writeFile ( path . join ( pkgPath , './index.js' ) , 'console.log("Hello World!")' ) ;
@@ -48,7 +48,7 @@ describe('ESM in main field', { concurrency: true }, () => {
48
48
} ) ;
49
49
50
50
it ( 'should emit warning when "main" and "exports" are missing' , async ( ) => {
51
- const cwd = path . join ( tmpdir . path , Math . random ( ) . toString ( ) ) ;
51
+ const cwd = tmpdir . resolve ( Math . random ( ) . toString ( ) ) ;
52
52
const pkgPath = path . join ( cwd , './node_modules/pkg/' ) ;
53
53
await mkdir ( pkgPath , { recursive : true } ) ;
54
54
await writeFile ( path . join ( pkgPath , './index.js' ) , 'console.log("Hello World!")' ) ;
@@ -65,7 +65,7 @@ describe('ESM in main field', { concurrency: true }, () => {
65
65
assert . strictEqual ( code , 0 ) ;
66
66
} ) ;
67
67
it ( 'should emit warning when "main" is falsy' , async ( ) => {
68
- const cwd = path . join ( tmpdir . path , Math . random ( ) . toString ( ) ) ;
68
+ const cwd = tmpdir . resolve ( Math . random ( ) . toString ( ) ) ;
69
69
const pkgPath = path . join ( cwd , './node_modules/pkg/' ) ;
70
70
await mkdir ( pkgPath , { recursive : true } ) ;
71
71
await writeFile ( path . join ( pkgPath , './index.js' ) , 'console.log("Hello World!")' ) ;
@@ -83,7 +83,7 @@ describe('ESM in main field', { concurrency: true }, () => {
83
83
assert . strictEqual ( code , 0 ) ;
84
84
} ) ;
85
85
it ( 'should emit warning when "main" is a relative path without extension' , async ( ) => {
86
- const cwd = path . join ( tmpdir . path , Math . random ( ) . toString ( ) ) ;
86
+ const cwd = tmpdir . resolve ( Math . random ( ) . toString ( ) ) ;
87
87
const pkgPath = path . join ( cwd , './node_modules/pkg/' ) ;
88
88
await mkdir ( pkgPath , { recursive : true } ) ;
89
89
await writeFile ( path . join ( pkgPath , './index.js' ) , 'console.log("Hello World!")' ) ;
@@ -101,7 +101,7 @@ describe('ESM in main field', { concurrency: true }, () => {
101
101
assert . strictEqual ( code , 0 ) ;
102
102
} ) ;
103
103
it ( 'should emit warning when "main" is an absolute path without extension' , async ( ) => {
104
- const cwd = path . join ( tmpdir . path , Math . random ( ) . toString ( ) ) ;
104
+ const cwd = tmpdir . resolve ( Math . random ( ) . toString ( ) ) ;
105
105
const pkgPath = path . join ( cwd , './node_modules/pkg/' ) ;
106
106
await mkdir ( pkgPath , { recursive : true } ) ;
107
107
await writeFile ( path . join ( pkgPath , './index.js' ) , 'console.log("Hello World!")' ) ;
0 commit comments