|
@@ -0,0 +1,18 @@
|
|
|
+import { Test, TestingModule } from '@nestjs/testing';
|
|
|
+import { SystemController } from './system.controller';
|
|
|
+
|
|
|
+describe('SystemController', () => {
|
|
|
+ let controller: SystemController;
|
|
|
+
|
|
|
+ beforeEach(async () => {
|
|
|
+ const module: TestingModule = await Test.createTestingModule({
|
|
|
+ controllers: [SystemController],
|
|
|
+ }).compile();
|
|
|
+
|
|
|
+ controller = module.get<SystemController>(SystemController);
|
|
|
+ });
|
|
|
+
|
|
|
+ it('should be defined', () => {
|
|
|
+ expect(controller).toBeDefined();
|
|
|
+ });
|
|
|
+});
|