We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cad9a0 commit 74d9a6aCopy full SHA for 74d9a6a
1 file changed
tests/resolvers/detect.test.ts
@@ -7,7 +7,7 @@ describe('detectForge', () => {
7
expect(config).toEqual({
8
type: 'github',
9
baseUrl: 'https://api.github.com',
10
- owner: 'bordumb',
+ owner: 'auths-dev',
11
repo: 'auths',
12
});
13
@@ -70,7 +70,7 @@ describe('detectForge', () => {
70
it('should handle URLs with extra path segments', () => {
71
const config = detectForge('https://github.com/auths-dev/auths/tree/main');
72
expect(config).not.toBeNull();
73
- expect(config!.owner).toBe('bordumb');
+ expect(config!.owner).toBe('auths-dev');
74
expect(config!.repo).toBe('auths');
75
76
0 commit comments