1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 21:35:23 +02:00

feat(edge/stacks): add app templates to deploy types [EE-6632] (#11070)

This commit is contained in:
Chaim Lev-Ari 2024-02-15 09:00:57 +02:00 committed by GitHub
parent edea9e3481
commit fe6ed55cab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
34 changed files with 1293 additions and 482 deletions

View file

@ -1,6 +1,10 @@
import { server } from './server';
beforeAll(() => server.listen());
beforeAll(() =>
server.listen({
onUnhandledRequest: 'error',
})
);
// if you need to add a handler after calling setupServer for some specific test
// this will remove that handler for the rest of them
// (which is important for test isolation):