ppob-backend/src/product/history-price/history-price.service.spec.ts
2021-12-15 15:17:59 +07:00

19 lines
503 B
TypeScript

import { Test, TestingModule } from '@nestjs/testing';
import { HistoryPriceService } from './history-price.service';
describe('HistoryPriceService', () => {
let service: HistoryPriceService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [HistoryPriceService],
}).compile();
service = module.get<HistoryPriceService>(HistoryPriceService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});