Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: update enterprise host test data #1096

Merged
merged 1 commit into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/utils/helpers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ describe('utils/helpers.ts', () => {
});
describe('isEnterpriseHost', () => {
it('should return true for enterprise host', () => {
expect(isEnterpriseHost('github.manos.im')).toBe(true);
expect(isEnterpriseHost('api.github.manos.im')).toBe(true);
expect(isEnterpriseHost('github.gitify.app')).toBe(true);
expect(isEnterpriseHost('api.github.gitify.app')).toBe(true);
});

it('should return false for non-enterprise host', () => {
Expand Down Expand Up @@ -95,8 +95,8 @@ describe('utils/helpers.ts', () => {
});

it('should generate a GitHub API url - enterprise', () => {
const result = getGitHubAPIBaseUrl('github.manos.im');
expect(result).toBe('https://github.manos.im/api/v3');
const result = getGitHubAPIBaseUrl('github.gitify.app');
expect(result).toBe('https://github.gitify.app/api/v3');
});
});

Expand Down