@@ -36,7 +36,7 @@ test('Runs the db_setup core step and makes NETLIFY_DB_URL available to the buil
3636 context : 'production' ,
3737 } )
3838
39- t . true ( output . includes ( 'NetlifyDB setup completed' ) )
39+ t . true ( output . includes ( 'Netlify DB setup completed' ) )
4040 t . true ( output . includes ( MAIN_CONNECTION_STRING ) )
4141
4242 // Should call createSiteDatabase but not createSiteDatabaseBranch for production
@@ -52,7 +52,7 @@ test('Runs the db_setup core step and creates a database branch for non-producti
5252 { context : 'deploy-preview' } ,
5353 )
5454
55- t . true ( output . includes ( 'NetlifyDB setup completed' ) )
55+ t . true ( output . includes ( 'Netlify DB setup completed' ) )
5656 t . true ( output . includes ( BRANCH_CONNECTION_STRING ) )
5757
5858 // Should call both createSiteDatabase and createSiteDatabaseBranch for non-production
@@ -74,7 +74,7 @@ test('Does not run the db_setup core step when @netlify/db is not in dependencie
7474 } = await fixture . withFlags ( { cwd : fixture . repositoryRoot , featureFlags : FEATURE_FLAGS } ) . runBuildProgrammatic ( )
7575
7676 t . true ( success )
77- t . false ( stdout . join ( '\n' ) . includes ( 'NetlifyDB setup completed' ) )
77+ t . false ( stdout . join ( '\n' ) . includes ( 'Netlify DB setup completed' ) )
7878} )
7979
8080test ( 'Does not run the db_setup core step when the feature flag is off' , async ( t ) => {
@@ -86,14 +86,14 @@ test('Does not run the db_setup core step when the feature flag is off', async (
8686 } = await fixture . withFlags ( { cwd : fixture . repositoryRoot } ) . runBuildProgrammatic ( )
8787
8888 t . true ( success )
89- t . false ( stdout . join ( '\n' ) . includes ( 'NetlifyDB setup completed' ) )
89+ t . false ( stdout . join ( '\n' ) . includes ( 'Netlify DB setup completed' ) )
9090} )
9191
9292test ( 'monorepo > Runs the db_setup core step when @netlify/db is in workspace devDependencies' , async ( t ) => {
9393 const { output } = await runWithMockServer (
9494 new Fixture ( './fixtures/monorepo' ) . withFlags ( { packagePath : 'apps/app-1' } ) ,
9595 )
9696
97- t . true ( output . includes ( 'NetlifyDB setup completed' ) )
97+ t . true ( output . includes ( 'Netlify DB setup completed' ) )
9898 t . true ( output . includes ( MAIN_CONNECTION_STRING ) )
9999} )
0 commit comments