diff --git a/__tests__/commands/export-sql.js b/__tests__/commands/export-sql.js index ad46695d3..05d1db63c 100644 --- a/__tests__/commands/export-sql.js +++ b/__tests__/commands/export-sql.js @@ -187,7 +187,7 @@ describe( 'commands/ExportSQLCommand', () => { const confirmEnoughStorageSpy = jest.spyOn( exportCommand, 'confirmEnoughStorage' ); beforeAll( () => { - confirmEnoughStorageSpy.mockResolvedValue( true ); + confirmEnoughStorageSpy.mockResolvedValue( { continue: true, isPromptShown: false } ); downloadSpy.mockResolvedValue( 'test-backup.sql.gz' ); } );