feat(branching): add configuration for catalog arborescence

This commit is contained in:
Joxit 2023-05-30 07:49:18 +02:00
parent 398fa65fa1
commit 1031034bc4
No known key found for this signature in database
GPG key ID: F526592B8E012263
11 changed files with 80 additions and 43 deletions

View file

@ -117,5 +117,6 @@ describe('repositories', () => {
assert.throws(() => getBranching(2, 1), DockerRegistryUIError, `Did not throw on min > max`);
assert.throws(() => getBranching(-2, 1), DockerRegistryUIError, `Did not throw on min < 0`);
assert.throws(() => getBranching(2, -1), DockerRegistryUIError, `Did not throw on max < 0`);
assert.throws(() => getBranching('foo', 'bar'), DockerRegistryUIError, `Did not throw on max < 0`);
});
});