@@ -7,12 +7,12 @@ describe('react static', function () {
7
7
let count = 0 ;
8
8
let dir ;
9
9
beforeEach ( async ( ) => {
10
- dir = path . join ( __dirname , 'react-ssg ' , '' + ++ count ) ;
10
+ dir = path . join ( __dirname , 'react-static ' , '' + ++ count ) ;
11
11
await overlayFS . mkdirp ( dir ) ;
12
12
await overlayFS . writeFile (
13
13
path . join ( dir , 'package.json' ) ,
14
14
JSON . stringify ( {
15
- name : 'react-ssg -test' ,
15
+ name : 'react-static -test' ,
16
16
dependencies : {
17
17
react : '^19' ,
18
18
} ,
@@ -28,15 +28,15 @@ describe('react static', function () {
28
28
await overlayFS . writeFile (
29
29
path . join ( dir , '.parcelrc' ) ,
30
30
JSON . stringify ( {
31
- extends : '@parcel/config-react-ssg ' ,
31
+ extends : '@parcel/config-react-static ' ,
32
32
} ) ,
33
33
) ;
34
34
35
35
await overlayFS . writeFile ( path . join ( dir , 'yarn.lock' ) , '' ) ;
36
36
} ) ;
37
37
38
38
after ( async ( ) => {
39
- await overlayFS . rimraf ( path . join ( __dirname , 'react-ssg ' ) ) ;
39
+ await overlayFS . rimraf ( path . join ( __dirname , 'react-static ' ) ) ;
40
40
} ) ;
41
41
42
42
it ( 'should render to HTML' , async function ( ) {
0 commit comments