Commit 8fd3845c authored by nanahira's avatar nanahira

missing

parent 2e47df8e
Pipeline #6529 canceled with stages
in 45 seconds
import { Test, TestingModule } from '@nestjs/testing';
import { SendQueueService } from './send-queue.service';
describe('SendQueueService', () => {
let service: SendQueueService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [SendQueueService],
}).compile();
service = module.get<SendQueueService>(SendQueueService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});
import { Injectable } from '@nestjs/common';
@Injectable()
export class SendQueueService {}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment