mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
import { ProjectsBundle } from '../../../src';
|
|
import * as Services from '../../../src/services';
|
|
|
|
test('All the correct service keys are included in the projects bundle', async () => {
|
|
const bundle: ProjectsBundle = new ProjectsBundle({ requesterFn: jest.fn(), token: 'test' });
|
|
const services = [
|
|
'Branches',
|
|
'Commits',
|
|
'CommitDiscussions',
|
|
'DeployKeys',
|
|
'Deployments',
|
|
'Environments',
|
|
'Issues',
|
|
'IssueAwardEmojis',
|
|
'IssueNotes',
|
|
'IssueDiscussions',
|
|
'Jobs',
|
|
'Labels',
|
|
'MergeRequests',
|
|
'MergeRequestApprovals',
|
|
'MergeRequestAwardEmojis',
|
|
'MergeRequestDiscussions',
|
|
'MergeRequestNotes',
|
|
'Pipelines',
|
|
'PipelineSchedules',
|
|
'PipelineScheduleVariables',
|
|
'Projects',
|
|
'ProjectAccessRequests',
|
|
'ProjectBadges',
|
|
'ProjectCustomAttributes',
|
|
'ProjectImportExport',
|
|
'ProjectIssueBoards',
|
|
'ProjectHooks',
|
|
'ProjectMembers',
|
|
'ProjectMilestones',
|
|
'ProjectSnippets',
|
|
'ProjectSnippetNotes',
|
|
'ProjectSnippetDiscussions',
|
|
'ProjectSnippetAwardEmojis',
|
|
'ProtectedBranches',
|
|
'ProjectVariables',
|
|
'Repositories',
|
|
'RepositoryFiles',
|
|
'Runners',
|
|
'Services',
|
|
'Tags',
|
|
'Triggers',
|
|
];
|
|
|
|
expect(Object.keys(bundle)).toIncludeAllMembers(services);
|
|
});
|
|
|
|
test('All the correct service instances are included in the projects bundle', async () => {
|
|
const bundle = new ProjectsBundle({ requesterFn: jest.fn(), token: 'test' });
|
|
|
|
(Object.keys(bundle) as (keyof typeof bundle)[]).forEach((key) => {
|
|
expect(bundle[key]).toBeInstanceOf(Services[key]);
|
|
});
|
|
});
|