mirror of
https://github.com/caprover/caprover
synced 2026-08-23 07:56:28 +00:00
Test bulk deletion missing-app validation
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { ensureAppsExist } from '../src/routes/user/apps/appdefinition/AppDefinitionRouter'
|
||||
|
||||
describe('app deletion', () => {
|
||||
test('rejects the entire request when any requested app is missing', () => {
|
||||
expect(() =>
|
||||
ensureAppsExist(['existing-app', 'missing-app'], {
|
||||
'existing-app': {},
|
||||
})
|
||||
).toThrow(
|
||||
'App (missing-app) could not be found. Make sure that you have created the app.'
|
||||
)
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user