Skip to content

Commit

Permalink
Merge branch 'master' into transaction_history
Browse files Browse the repository at this point in the history
  • Loading branch information
cauta authored Apr 22, 2024
2 parents 3e5b061 + accc52a commit 2ec841a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { EventHistoryService } from './event_history.service';

describe('EventHistoryService', () => {
let service: EventHistoryService;

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

service = module.get<EventHistoryService>(EventHistoryService);
});

it('should be defined', () => {
expect(service).toBeDefined();
});
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { Injectable } from '@nestjs/common';

@Injectable()
export class EventHistoryService {}

0 comments on commit 2ec841a

Please sign in to comment.