Skip to content
Snippets Groups Projects

feat: implement schema manager base functionality

Merged Konstantin Tsabolov requested to merge tsabolov/ocm-engine:feat/schema-manager into main
16 files
+ 679
5
Compare changes
  • Side-by-side
  • Inline
Files
16
import type { INestApplication } from '@nestjs/common';
import { Test } from '@nestjs/testing';
import { Application } from '../application.js';
describe('Application', () => {
let app: INestApplication;
beforeAll(async () => {
const moduleFixture = await Test.createTestingModule({
imports: [Application],
}).compile();
app = moduleFixture.createNestApplication();
await app.init();
});
afterAll(async () => {
await app.close();
});
it('should be defined', () => {
expect(app).toBeDefined();
});
});
Loading