import { Test, TestingModule } from '@nestjs/testing';
import { InksController } from './inks.controller';
import { InksService } from './inks.service';

describe('InksController', () => {
  let controller: InksController;

  beforeEach(async () => {
    const module: TestingModule = await Test.createTestingModule({
      controllers: [InksController],
      providers: [InksService],
    }).compile();

    controller = module.get<InksController>(InksController);
  });

  it('should be defined', () => {
    expect(controller).toBeDefined();
  });
});
