feat(pipelines): list logs 时提供关联的 tasks 。

This commit is contained in:
Ivan
2021-03-28 19:37:16 +08:00
parent da6bc9a068
commit 032aa89b05
7 changed files with 68 additions and 21 deletions

View File

@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { CommitLogsResolver } from './commit-logs.resolver';
describe('CommitLogsResolver', () => {
let resolver: CommitLogsResolver;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [CommitLogsResolver],
}).compile();
resolver = module.get<CommitLogsResolver>(CommitLogsResolver);
});
it('should be defined', () => {
expect(resolver).toBeDefined();
});
});