File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
packages/framework/tests/Feature Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -160,14 +160,12 @@ public function testNodeActionOutputs()
160160 {
161161 Process::fake ();
162162
163- $ this ->artisan ('build --run-prettier --run-dev --run-prod ' )
163+ $ this ->artisan ('build --run-prettier --run-vite ' )
164164 ->expectsOutput ('Prettifying code! This may take a second. ' )
165- ->expectsOutput ('Building frontend assets for development! This may take a second. ' )
166- ->expectsOutput ('Building frontend assets for production! This may take a second. ' )
165+ ->expectsOutput ('Building frontend assets with Vite! This may take a second. ' )
167166 ->assertExitCode (0 );
168167
169168 Process::assertRan (fn ($ process ) => $ process ->command === 'npx prettier ' .Hyde::pathToRelative (Hyde::sitePath ()).'/**/*.html --write --bracket-same-line ' );
170- Process::assertRan (fn ($ process ) => $ process ->command === 'npm run dev ' );
171169 Process::assertRan (fn ($ process ) => $ process ->command === 'npm run build ' );
172170 }
173171
You can’t perform that action at this time.
0 commit comments