@@ -33,9 +33,7 @@ Deno.test({
3333 await Deno . writeTextFile ( path . join ( tmp , "foo.css" ) , "body { color: red; }" ) ;
3434 const app = new App ( {
3535 staticDir : tmp ,
36- build : {
37- outDir : path . join ( tmp , "dist" ) ,
38- } ,
36+ buildOutDir : path . join ( tmp , "dist" ) ,
3937 } ) ;
4038 await builder . build ( app ) ;
4139
@@ -57,9 +55,7 @@ Deno.test({
5755 ) ;
5856 const app = new App ( {
5957 staticDir : tmp ,
60- build : {
61- outDir : path . join ( tmp , "dist" ) ,
62- } ,
58+ buildOutDir : path . join ( tmp , "dist" ) ,
6359 } ) ;
6460 await builder . build ( app ) ;
6561
@@ -83,9 +79,7 @@ Deno.test({
8379 ) ;
8480 const app = new App ( {
8581 staticDir : tmp ,
86- build : {
87- outDir : path . join ( tmp , "dist" ) ,
88- } ,
82+ buildOutDir : path . join ( tmp , "dist" ) ,
8983 } ) ;
9084 await builder . build ( app ) ;
9185
@@ -105,9 +99,7 @@ Deno.test({
10599 const tmp = await Deno . makeTempDir ( ) ;
106100 const app = new App ( {
107101 staticDir : tmp ,
108- build : {
109- outDir : path . join ( tmp , "dist" ) ,
110- } ,
102+ buildOutDir : path . join ( tmp , "dist" ) ,
111103 } ) ;
112104
113105 app . island ( "jsr:@marvinh-test/fresh-island" , "RemoteIsland" , RemoteIsland ) ;
0 commit comments