Spaces:
Sleeping
Sleeping
File size: 499 Bytes
73746a8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import { Test, TestingModule } from '@nestjs/testing';
import { PaymentController } from './payment.controller';
describe('PaymentController', () => {
let controller: PaymentController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [PaymentController],
}).compile();
controller = module.get<PaymentController>(PaymentController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});
|