Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
re-enable git && fix tests #68 #28
Browse files Browse the repository at this point in the history
  • Loading branch information
archywillhe committed Oct 26, 2023
1 parent 9177cc7 commit 39f5b92
Show file tree
Hide file tree
Showing 14 changed files with 739 additions and 54 deletions.
6 changes: 3 additions & 3 deletions packages/insomnia/src/network/__tests__/network.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ describe('sendCurlAndWriteTimeline()', () => {
PROXY: '',
TIMEOUT_MS: 30000,
URL: 'http://localhost/?foo%20bar=hello%26world',
USERAGENT: `insomnia/${version}`,
USERAGENT: `insomnium/${version}`,
VERBOSE: true,
},
});
Expand Down Expand Up @@ -309,7 +309,7 @@ describe('sendCurlAndWriteTimeline()', () => {
PROXY: '',
TIMEOUT_MS: 30000,
URL: 'http://localhost/?foo%20bar=hello%26world',
USERAGENT: `insomnia/${version}`,
USERAGENT: `insomnium/${version}`,
VERBOSE: true,
},
});
Expand Down Expand Up @@ -741,7 +741,7 @@ describe('sendCurlAndWriteTimeline()', () => {
SSL_VERIFYPEER: 0, // should disable SSL
TIMEOUT_MS: 30000,
URL: 'http://localhost/?foo%20bar=hello%26world',
USERAGENT: `insomnia/${version}`,
USERAGENT: `insomnium/${version}`,
VERBOSE: true,
},
});
Expand Down
2 changes: 1 addition & 1 deletion packages/insomnia/src/sync/git/git-vcs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ interface InitFromCloneOptions {
*/
export const GIT_CLONE_DIR = '.';
const gitInternalDirName = 'git';
export const GIT_INSOMNIA_DIR_NAME = '.insomnia';
export const GIT_INSOMNIA_DIR_NAME = '.insomnium';
export const GIT_INTERNAL_DIR = path.join(GIT_CLONE_DIR, gitInternalDirName);
export const GIT_INSOMNIA_DIR = path.join(GIT_CLONE_DIR, GIT_INSOMNIA_DIR_NAME);

Expand Down
Loading

0 comments on commit 39f5b92

Please sign in to comment.