mirror of
https://github.com/strapi/strapi.git
synced 2025-07-13 12:02:10 +00:00

* chore(i18n): rename getTrads to getTranslations * chore(i18n): convert settings as associated components to TS * chore: remove utils index file * chore(admin): remove unused directive
14 lines
166 B
TypeScript
14 lines
166 B
TypeScript
import { server } from './server';
|
|
|
|
beforeAll(() => {
|
|
server.listen();
|
|
});
|
|
|
|
afterEach(() => {
|
|
server.resetHandlers();
|
|
});
|
|
|
|
afterAll(() => {
|
|
server.close();
|
|
});
|