14 lines
340 B
TypeScript
14 lines
340 B
TypeScript
import { HistoricalDataModule } from './historical-data.module';
|
|
|
|
describe('HistoricalDataModule', () => {
|
|
let historicalDataModule: HistoricalDataModule;
|
|
|
|
beforeEach(() => {
|
|
historicalDataModule = new HistoricalDataModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(historicalDataModule).toBeTruthy();
|
|
});
|
|
});
|