mirror of
https://github.com/lingble/twenty.git
synced 2025-11-06 23:57:56 +00:00
### Description - We are using gql instead of strings to be able to see the graphql code highlighted ### Demo  Fixes #7526 --------- Co-authored-by: gitstart-twenty <gitstart-twenty@users.noreply.github.com> Co-authored-by: Charles Bochet <charles@twenty.com> Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
17 lines
401 B
TypeScript
17 lines
401 B
TypeScript
import { JestConfigWithTsJest } from 'ts-jest';
|
|
import 'tsconfig-paths/register';
|
|
|
|
import { createApp } from './create-app';
|
|
|
|
export default async (_, projectConfig: JestConfigWithTsJest) => {
|
|
const app = await createApp({});
|
|
|
|
if (!projectConfig.globals) {
|
|
throw new Error('No globals found in project config');
|
|
}
|
|
|
|
await app.listen(projectConfig.globals.APP_PORT);
|
|
|
|
global.app = app;
|
|
};
|