We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcc565e commit 42da609Copy full SHA for 42da609
test/db/file/repo.test.js
@@ -41,8 +41,6 @@ describe('File DB', () => {
41
const result = await repoModule.getRepoByUrl('https://github.com/finos/git-proxy.git');
42
expect(result).to.deep.equal(repoData);
43
});
44
-
45
46
it('should return null if the repo is not found', async () => {
47
sandbox.stub(repoModule.db, 'findOne').callsFake((query, cb) => cb(null, null));
48
0 commit comments